diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-01 17:03:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-01 17:03:41 +0000 |
commit | 434ea02f7c7e2d119ef5648402911259427fbe02 (patch) | |
tree | 282b23120efb9e6da67927eb7282673454d50e75 /src | |
parent | 803b51d1a61b8c13badf6ac1f361b4d577f03cda (diff) |
- core icons' indexes correction
- warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@2139 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/options/options.cpp | 2 | ||||
-rw-r--r-- | src/resource.h | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/modules/options/options.cpp b/src/modules/options/options.cpp index 56f48befda..c39f613571 100644 --- a/src/modules/options/options.cpp +++ b/src/modules/options/options.cpp @@ -1034,7 +1034,7 @@ static INT_PTR CALLBACK OptionsDlgProc(HWND hdlg, UINT message, WPARAM wParam, L }
if (p->hwnd == NULL) {
RECT rcPage;
- RECT rcControl, rc;
+ RECT rc;
int w, h;
p->hwnd = CreateDialogIndirectParamA(p->hInst, p->pTemplate, hdlg, p->dlgProc, p->dwInitParam);
diff --git a/src/resource.h b/src/resource.h index f8642d0655..95d84b8462 100644 --- a/src/resource.h +++ b/src/resource.h @@ -24,14 +24,6 @@ #define IDD_URLSEND 119
#define IDD_URLRECV 120
#define IDD_AUTHREQ 121
-#define IDI_ALWAYSVIS 122
-#define IDD_EI_OPTIONS 123
-#define IDI_NEVERVIS 124
-#define IDI_CHAT 126
-#define IDI_MALE 144
-#define IDI_FEMALE 145
-#define IDI_EMPTY 146
-#define IDR_OPT_POPUP 147
#define IDD_DETAILS 125
#define IDD_HISTORY 127
#define IDI_AWAY 128
@@ -60,6 +52,14 @@ #define IDR_CONTEXT 180
#define IDR_ICOLIB_CONTEXT 181
#define IDC_DROP 183
+#define IDI_ALWAYSVIS 184
+#define IDD_EI_OPTIONS 185
+#define IDI_NEVERVIS 186
+#define IDI_CHAT 187
+#define IDI_MALE 188
+#define IDI_FEMALE 189
+#define IDI_EMPTY 190
+#define IDR_OPT_POPUP 191
#define IDD_HISTORY_FIND 192
#define IDI_SENDEMAIL 193
#define IDD_FILERECV 194
|