diff options
author | Dart Raiden <wowemuh@gmail.com> | 2013-12-02 00:30:55 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2013-12-02 00:30:55 +0000 |
commit | 773612ddd32ba046c36b3ba99c2d2d4b19246312 (patch) | |
tree | 01d4a33f8aaa01d7426a857acc9899741a515eba /src/core/stdfile/filexferdlg.cpp | |
parent | d6d8c8dc0af9dbfed00c87754b8b0aa91aa87815 (diff) |
another portion of decapitalization in the core (4/5)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7030 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stdfile/filexferdlg.cpp')
-rw-r--r-- | src/core/stdfile/filexferdlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdfile/filexferdlg.cpp b/src/core/stdfile/filexferdlg.cpp index 6ab057b167..e7a0d392f4 100644 --- a/src/core/stdfile/filexferdlg.cpp +++ b/src/core/stdfile/filexferdlg.cpp @@ -33,7 +33,7 @@ static int CheckVirusScanned(HWND hwnd, struct FileDlgData *dat, int i) if (dat->fileVirusScanned == NULL) return 0;
if (dat->fileVirusScanned[i]) return 1;
if (db_get_b(NULL, "SRFile", "WarnBeforeOpening", 1) == 0) return 1;
- return IDYES == MessageBox(hwnd, TranslateT("This file has not yet been scanned for viruses. Are you certain you want to open it?"), TranslateT("File Received"), MB_YESNO|MB_DEFBUTTON2);
+ return IDYES == MessageBox(hwnd, TranslateT("This file has not yet been scanned for viruses. Are you certain you want to open it?"), TranslateT("File received"), MB_YESNO|MB_DEFBUTTON2);
}
#define M_VIRUSSCANDONE (WM_USER+100)
|