diff options
author | slotwin <slotwin@users.noreply.github.com> | 2014-05-20 19:58:29 +0000 |
---|---|---|
committer | slotwin <slotwin@users.noreply.github.com> | 2014-05-20 19:58:29 +0000 |
commit | f950c91ccba114a62a69c08aec724a0487cc8e7d (patch) | |
tree | 768eefc06a5d2e00323c15059ce2244dc8e8e814 /plugins/Clist_mw/src/clcopts.cpp | |
parent | b563eba7514c70e53e13cf0cffc5bf1245e5d654 (diff) |
Clist_mw: proper capitalization in options and menus
git-svn-id: http://svn.miranda-ng.org/main/trunk@9256 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_mw/src/clcopts.cpp')
-rw-r--r-- | plugins/Clist_mw/src/clcopts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_mw/src/clcopts.cpp b/plugins/Clist_mw/src/clcopts.cpp index 5c3120e29d..a859f095a1 100644 --- a/plugins/Clist_mw/src/clcopts.cpp +++ b/plugins/Clist_mw/src/clcopts.cpp @@ -60,7 +60,7 @@ int ClcOptInit(WPARAM wParam, LPARAM lParam) odp.flags = ODPF_BOLDGROUPS;
Options_AddPage(wParam, &odp);
- if ( !ServiceExists(MS_BACKGROUNDCONFIG_REGISTER)) {
+ if (!ServiceExists(MS_BACKGROUNDCONFIG_REGISTER)) {
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPT_CLCBKG);
odp.pszTitle = LPGEN("List background");
odp.pfnDlgProc = DlgProcClcBkgOpts;
@@ -73,7 +73,7 @@ int ClcOptInit(WPARAM wParam, LPARAM lParam) odp.pfnDlgProc = DlgProcClcMetaOpts;
Options_AddPage(wParam, &odp);
- if ( !ServiceExists(MS_BACKGROUNDCONFIG_REGISTER)) {
+ if (!ServiceExists(MS_BACKGROUNDCONFIG_REGISTER)) {
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPT_CLCBKG);
odp.pszTitle = LPGEN("Status bar background");
odp.pfnDlgProc = DlgProcStatusBarBkgOpts;
|