From 4356103325987775d6e341e7b686e0d628d035be Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 22 Dec 2012 12:39:24 +0000 Subject: fixed control size git-svn-id: http://svn.miranda-ng.org/main/trunk@2790 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/CSList/src/cslist.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/CSList/src/cslist.cpp') diff --git a/plugins/CSList/src/cslist.cpp b/plugins/CSList/src/cslist.cpp index 68d447eb4b..ee3d6ccad1 100644 --- a/plugins/CSList/src/cslist.cpp +++ b/plugins/CSList/src/cslist.cpp @@ -85,7 +85,7 @@ static int OnInitOptions(WPARAM wparam, LPARAM lparam) odp.cbSize = sizeof(odp); odp.position = 955000000; odp.hInstance = g_hInst; - odp.pszTemplate = MAKEINTRESOURCEA( IDD_OPTIONS ); + odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPTIONS); odp.pszTitle = MODULENAME; odp.pfnDlgProc = CSOptionsProc; odp.pszGroup = LPGEN("Status"); @@ -140,7 +140,7 @@ extern "C" __declspec(dllexport) int Load() for (int i=0; i < SIZEOF(forms); i++) { char szSettingName[64]; - mir_snprintf( szSettingName, SIZEOF(szSettingName), "%s_%s", __INTERNAL_NAME, forms[i].pszIconIcoLib ); + mir_snprintf(szSettingName, SIZEOF(szSettingName), "%s_%s", __INTERNAL_NAME, forms[i].pszIconIcoLib); sid.pszName = szSettingName; sid.ptszDescription = forms[i].ptszDescr; @@ -176,7 +176,7 @@ void RegisterHotkeys(char buf[200], TCHAR* accName, int Number) hotkey.ptszDescription = accName; hotkey.ptszSection = LPGENT("Custom Status List"); hotkey.pszService = buf; - hotkey.DefHotKey = HOTKEYCODE( HOTKEYF_CONTROL | HOTKEYF_SHIFT, '0'+Number); + hotkey.DefHotKey = HOTKEYCODE( HOTKEYF_CONTROL | HOTKEYF_SHIFT, '0' + Number); Hotkey_Register(&hotkey); } -- cgit v1.2.3