diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-02 21:45:07 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-02 21:45:07 +0000 |
commit | 643d8dde868bee26748d36ad8533a52b7d7b9b06 (patch) | |
tree | 96a5170420e9823996ffefc18fe8db2402381c86 | |
parent | 4a2ea340fd570327f95caedb215713342d9bd160 (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14480 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | src/mir_app/src/clui.cpp | 1 | ||||
-rw-r--r-- | src/mir_app/src/resource.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mir_app/src/clui.cpp b/src/mir_app/src/clui.cpp index 44583a893f..197bff3f2f 100644 --- a/src/mir_app/src/clui.cpp +++ b/src/mir_app/src/clui.cpp @@ -262,6 +262,7 @@ int LoadCLUIModule(void) RegisterClassEx(&wndclass);
memset(&wndclass, 0, sizeof(wndclass));
+ wndclass.cbSize = sizeof(wndclass);
wndclass.style = CS_HREDRAW | CS_VREDRAW | ((db_get_b(NULL, "CList", "WindowShadow", 0) == 1) ? CS_DROPSHADOW : 0);
wndclass.lpfnWndProc = ContactListWndProc;
wndclass.hInstance = cli.hInst;
diff --git a/src/mir_app/src/resource.h b/src/mir_app/src/resource.h index 18aa499f39..00027b4c75 100644 --- a/src/mir_app/src/resource.h +++ b/src/mir_app/src/resource.h @@ -81,6 +81,7 @@ #define IDD_COLORCHOOSER 195
#define IDD_PROFILEMANAGER 197
#define IDI_MAINMENU 198
+#define IDR_CLISTMENU 199
#define IDI_BLANK 200
#define IDD_FINDADD 201
#define IDI_USERONLINE 201
|