diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-07-17 07:37:38 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-07-17 07:37:38 +0000 |
commit | 2ff3fc22cca2302a3787930efb4bbefb45c2d975 (patch) | |
tree | c579d4a895f9d0a1524d5adb8b6103d6a5c9fb31 /plugins/WhoUsesMyFiles | |
parent | 2ead0631aee725055c4b007d752ee94647fc9614 (diff) |
- cosmetic patches from dartraiden
git-svn-id: http://svn.miranda-ng.org/main/trunk@5393 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/WhoUsesMyFiles')
-rw-r--r-- | plugins/WhoUsesMyFiles/res/resource.rc | 12 | ||||
-rw-r--r-- | plugins/WhoUsesMyFiles/src/wumfplug.cpp | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/plugins/WhoUsesMyFiles/res/resource.rc b/plugins/WhoUsesMyFiles/res/resource.rc index fe24192ffe..7a46fc8465 100644 --- a/plugins/WhoUsesMyFiles/res/resource.rc +++ b/plugins/WhoUsesMyFiles/res/resource.rc @@ -77,19 +77,19 @@ BEGIN CONTROL "Log into text file",IDC_LOG_INTO_FILE,"Button",
BS_AUTOCHECKBOX | WS_TABSTOP,14,123,64,12
CONTROL "Log folders access",IDC_LOG_FOLDER,"Button",
- BS_AUTOCHECKBOX | WS_TABSTOP,14,143,75,12
+ BS_AUTOCHECKBOX | WS_TABSTOP,14,143,140,12
CONTROL "Alerts on folders access",IDC_ALERT_FOLDER,"Button",
- BS_AUTOCHECKBOX | WS_TABSTOP,165,143,91,12
+ BS_AUTOCHECKBOX | WS_TABSTOP,165,143,147,12
CONTROL "Log files and folders in UNC format",IDC_LOG_UNC,"Button",
- BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,163,125,12
+ BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,163,140,12
CONTROL "Alert files && folders in UNC format",IDC_ALERT_UNC,
"Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,165,
- 163,119,12
+ 163,147Alerts ,12
CONTROL "Log computer name with username",IDC_LOG_COMP,"Button",
- BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,183,126,10
+ BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,183,140,10
CONTROL "Alert computer name with username",IDC_ALERT_COMP,
"Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,165,
- 183,128,10
+ 183,147,10
LTEXT "Disabled options will be available in the next version",
IDC_STATIC,83,194,199,9
PUSHBUTTON "Show current connections",IDC_CONN,162,231,104,15
diff --git a/plugins/WhoUsesMyFiles/src/wumfplug.cpp b/plugins/WhoUsesMyFiles/src/wumfplug.cpp index 52d76d7bd2..f11324e484 100644 --- a/plugins/WhoUsesMyFiles/src/wumfplug.cpp +++ b/plugins/WhoUsesMyFiles/src/wumfplug.cpp @@ -153,7 +153,7 @@ void ShowThePopup(PWumf w, LPTSTR title, LPTSTR text) void ShowThePreview()
{
if ( !ServiceExists(MS_POPUP_ADDPOPUPT)) {
- MessageBox(NULL, TranslateT("Popup plugin not found!"), TranslateT("WUMF plugin"), MB_OK|MB_ICONSTOP);
+ MessageBox(NULL, TranslateT("Popup plugin not found!"), TranslateT("Error"), MB_OK|MB_ICONSTOP);
return;
}
@@ -280,7 +280,7 @@ void ChooseFile(HWND hDlg) else if (CommDlgExtendedError() != 0) {
TCHAR str[256];
mir_sntprintf(str, SIZEOF(str), TranslateT("Common Dialog Error 0x%lx"), CommDlgExtendedError());
- MessageBox(hDlg, str, TranslateT("Wumf plugin"), MB_OK | MB_ICONSTOP);
+ MessageBox(hDlg, str, TranslateT("Error"), MB_OK | MB_ICONSTOP);
}
}
|