diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-12-13 12:45:04 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-12-13 12:45:04 +0000 |
commit | bb0c52985eccfae809a08bb72938b863bc546032 (patch) | |
tree | 8f75f15d7d5b755276d550c24bcc102acda7512c /plugins/Clist_modern/src/CLUIFrames | |
parent | e3c1a6d3c8ca609923a87635d208472db2e384e6 (diff) |
Clist_modern: decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@11368 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/CLUIFrames')
-rw-r--r-- | plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp b/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp index eae9c3044f..aec0275997 100644 --- a/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp +++ b/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp @@ -2989,8 +2989,8 @@ static LRESULT CALLBACK CLUIFrameTitleBarProc(HWND hwnd, UINT msg, WPARAM wParam AppendMenu(hmenu,MF_SEPARATOR,16,_T(""));
if (g_pfwFrames[framepos].Locked)
- {AppendMenu(hmenu,MF_STRING|MF_CHECKED,frame_menu_lock,TranslateT("Lock Frame"));}
- else{AppendMenu(hmenu,MF_STRING,frame_menu_lock,TranslateT("Lock Frame"));};
+ {AppendMenu(hmenu,MF_STRING|MF_CHECKED,frame_menu_lock,TranslateT("Lock frame"));}
+ else{AppendMenu(hmenu,MF_STRING,frame_menu_lock,TranslateT("Lock frame"));};
if (g_pfwFrames[framepos].visible)
{AppendMenu(hmenu,MF_STRING|MF_CHECKED,frame_menu_visible,TranslateT("Visible"));}
|