diff options
author | Dart Raiden <wowemuh@gmail.com> | 2016-01-17 17:04:32 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2016-01-17 17:04:32 +0000 |
commit | 8d112c562904fbfbc50ed7225f7e957f49e8223c (patch) | |
tree | e14139454abe8dd781954394da964c80ce281aec /plugins/AuthState | |
parent | 2cb350de617e5e8b2d512ec1791a1e6cb0e685af (diff) |
AuthState: rename icon (this is authorization Request), decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@16113 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AuthState')
-rw-r--r-- | plugins/AuthState/res/authstate.rc | 2 | ||||
-rw-r--r-- | plugins/AuthState/src/main.cpp | 8 | ||||
-rw-r--r-- | plugins/AuthState/src/options.cpp | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/plugins/AuthState/res/authstate.rc b/plugins/AuthState/res/authstate.rc index 1556fba414..7e898cfe81 100644 --- a/plugins/AuthState/res/authstate.rc +++ b/plugins/AuthState/res/authstate.rc @@ -75,7 +75,7 @@ IDD_AUTHSTATE_OPT DIALOGEX 0, 0, 314, 130 STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
- CONTROL "Show Auth icon",IDC_AUTHICON,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,30,70,246,18
+ CONTROL "Show Request icon",IDC_AUTHICON,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,30,70,246,18
CONTROL "Show Grant icon",IDC_GRANTICON,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,30,86,246,18
GROUPBOX "Plugin settings",IDC_STATIC,19,23,276,90
CONTROL "Enable menu item (restart required)",IDC_ENABLEMENUITEM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,30,42,246,13
diff --git a/plugins/AuthState/src/main.cpp b/plugins/AuthState/src/main.cpp index 6f0ac6fc36..230edfd5c6 100644 --- a/plugins/AuthState/src/main.cpp +++ b/plugins/AuthState/src/main.cpp @@ -155,9 +155,9 @@ int onPrebuildContactMenu(WPARAM hContact, LPARAM) static IconItem iconList[] =
{
- { LPGEN("Auth"), "auth_icon", IDI_AUTH },
+ { LPGEN("Request"), "auth_icon", IDI_AUTH },
{ LPGEN("Grant"), "grant_icon", IDI_GRANT },
- { LPGEN("Auth & Grant"), "authgrant_icon", IDI_AUTHGRANT }
+ { LPGEN("Request & Grant"), "authgrant_icon", IDI_AUTHGRANT }
};
int onModulesLoaded(WPARAM, LPARAM)
@@ -207,10 +207,10 @@ extern "C" int __declspec(dllexport) Load(void) }
// IcoLib support
- Icon_Register(g_hInst, LPGEN("Auth State"), iconList, _countof(iconList));
+ Icon_Register(g_hInst, LPGEN("Auth state"), iconList, _countof(iconList));
// extra icons
- hExtraIcon = ExtraIcon_RegisterIcolib("authstate", LPGEN("Auth State"), "authgrant_icon");
+ hExtraIcon = ExtraIcon_RegisterIcolib("authstate", LPGEN("Auth state"), "authgrant_icon");
return 0;
}
diff --git a/plugins/AuthState/src/options.cpp b/plugins/AuthState/src/options.cpp index 00f452830b..2374c8592e 100644 --- a/plugins/AuthState/src/options.cpp +++ b/plugins/AuthState/src/options.cpp @@ -75,7 +75,7 @@ int onOptInitialise(WPARAM wParam, LPARAM) odp.hInstance = g_hInst;
odp.pszGroup = LPGEN("Icons");
odp.pszTemplate = MAKEINTRESOURCEA(IDD_AUTHSTATE_OPT);
- odp.pszTitle = LPGEN("Auth State");
+ odp.pszTitle = LPGEN("Auth state");
odp.pfnDlgProc = DlgProcOptions;
odp.flags = ODPF_BOLDGROUPS;
Options_AddPage(wParam, &odp);
|