diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-12-22 12:39:24 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-12-22 12:39:24 +0000 |
commit | 4356103325987775d6e341e7b686e0d628d035be (patch) | |
tree | bed855c3e38c6ba92e4fba67f398460b83ea37a3 /plugins/CSList | |
parent | f86198f33a1aa51e952b9f98a33d89dc60dd32cb (diff) |
fixed control size
git-svn-id: http://svn.miranda-ng.org/main/trunk@2790 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CSList')
-rw-r--r-- | plugins/CSList/cslist_11.vcxproj.filters | 6 | ||||
-rw-r--r-- | plugins/CSList/res/cslist.rc | 8 | ||||
-rw-r--r-- | plugins/CSList/src/cslist.cpp | 6 |
3 files changed, 11 insertions, 9 deletions
diff --git a/plugins/CSList/cslist_11.vcxproj.filters b/plugins/CSList/cslist_11.vcxproj.filters index d84ed620d3..c3ac63e74c 100644 --- a/plugins/CSList/cslist_11.vcxproj.filters +++ b/plugins/CSList/cslist_11.vcxproj.filters @@ -26,12 +26,12 @@ <ClInclude Include="src\strpos.h">
<Filter>Header Files</Filter>
</ClInclude>
- <ClInclude Include="src\resource.h">
- <Filter>Resource Files</Filter>
- </ClInclude>
<ClInclude Include="src\Version.h">
<Filter>Header Files</Filter>
</ClInclude>
+ <ClInclude Include="src\resource.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\cslist.rc">
diff --git a/plugins/CSList/res/cslist.rc b/plugins/CSList/res/cslist.rc index f502b7e6c1..c50553c3d5 100644 --- a/plugins/CSList/res/cslist.rc +++ b/plugins/CSList/res/cslist.rc @@ -7,7 +7,8 @@ //
// Generated from the TEXTINCLUDE 2 resource.
//
-#include "afxres.h"
+#include "afxres.h"
+
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
@@ -86,7 +87,7 @@ BEGIN "Button",BS_AUTOCHECKBOX | BS_TOP | BS_MULTILINE | WS_TABSTOP,24,32,253,10
CONTROL "Remember last window position",IDC_REMEMBER_POSITION,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,24,44,253,10
- CTEXT "Note: Menu items are only visible when at least one account is properly set. Check if you have at least one account with UIN filled in.",IDC_STATIC,6,68,283,23
+ CTEXT "Note: Menu items are only visible when at least one account is properly set. Check if you have at least one account with UIN filled in.",IDC_STATIC,6,68,283,35
END
@@ -172,7 +173,8 @@ END //
// Generated from the TEXTINCLUDE 3 resource.
//
-
+
+
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED
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);
}
|