diff options
author | slotwin <slotwin@users.noreply.github.com> | 2014-05-23 01:31:00 +0000 |
---|---|---|
committer | slotwin <slotwin@users.noreply.github.com> | 2014-05-23 01:31:00 +0000 |
commit | adb15a53d1b4f617f30536b8f622b3eca6060af1 (patch) | |
tree | b82a2aad1dcd980b2f932111189cccd41336a6d0 /plugins/Clist_modern/src/modern_clui.cpp | |
parent | 7c8227d28d71752509dfac29723141eba4733f06 (diff) |
Clist_modern: proper capitalization in options and menus
options: fixed highlighting Apply button only when settings changed
code cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@9285 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clui.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Clist_modern/src/modern_clui.cpp b/plugins/Clist_modern/src/modern_clui.cpp index 0b881617bc..1c4013ad40 100644 --- a/plugins/Clist_modern/src/modern_clui.cpp +++ b/plugins/Clist_modern/src/modern_clui.cpp @@ -333,7 +333,7 @@ HRESULT CLUI::RegisterAvatarMenu() CreateServiceFunction("CList/ShowContactAvatar", CLUI::Service_Menu_ShowContactAvatar);
mi.position = 2000150000;
mi.hIcon = LoadSmallIcon(g_hInst, IDI_SHOW_AVATAR);
- mi.pszName = LPGEN("Show Contact &Avatar");
+ mi.pszName = LPGEN("Show contact &avatar");
mi.pszService = "CList/ShowContactAvatar";
hShowAvatarMenuItem = Menu_AddContactMenuItem(&mi);
DestroyIcon_protect(mi.hIcon);
@@ -341,7 +341,7 @@ HRESULT CLUI::RegisterAvatarMenu() CreateServiceFunction("CList/HideContactAvatar", CLUI::Service_Menu_HideContactAvatar);
mi.position = 2000150001;
mi.hIcon = LoadSmallIcon(g_hInst, IDI_HIDE_AVATAR);
- mi.pszName = LPGEN("Hide Contact &Avatar");
+ mi.pszName = LPGEN("Hide contact &avatar");
mi.pszService = "CList/HideContactAvatar";
hHideAvatarMenuItem = Menu_AddContactMenuItem(&mi);
DestroyIcon_protect(mi.hIcon);
@@ -417,8 +417,8 @@ HRESULT CLUI::CreateCLC() Frame.align = alClient;
Frame.hIcon = LoadSkinnedIcon(SKINICON_OTHER_FRAME);
Frame.Flags = F_VISIBLE | F_SHOWTBTIP | F_NO_SUBCONTAINER | F_TCHAR;
- Frame.tname = LPGENT("My Contacts");
- Frame.TBtname = TranslateT("My Contacts");
+ Frame.tname = LPGENT("My contacts");
+ Frame.TBtname = TranslateT("My contacts");
hFrameContactTree = (HWND)CallService(MS_CLIST_FRAMES_ADDFRAME,(WPARAM)&Frame,0);
CallService(MS_SKINENG_REGISTERPAINTSUB,(WPARAM)Frame.hWnd,(LPARAM)CLCPaint::PaintCallbackProc);
|