diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-14 13:35:24 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-14 13:35:24 +0000 |
commit | a9497b5e0a03930187053ce79dcf2bb0c3cd76a8 (patch) | |
tree | 6cc865ff308667e84cc24caf2f52f8f887875c8f /src/core | |
parent | 8fe663b6618f5d11c541c75fd5fed5d9f9038f82 (diff) |
warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14163 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdchat/src/chat.h | 2 | ||||
-rw-r--r-- | src/core/stdchat/src/options.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/stdchat/src/chat.h b/src/core/stdchat/src/chat.h index 61ddc2bd03..6e66536072 100644 --- a/src/core/stdchat/src/chat.h +++ b/src/core/stdchat/src/chat.h @@ -151,7 +151,7 @@ SESSION_INFO* SM_GetNextWindow(SESSION_INFO *si); // options.c
int OptionsInitialize(WPARAM wParam, LPARAM lParam);
void AddIcons(void);
-HICON LoadIconEx(char* pszIcoLibName, BOOL big);
+HICON LoadIconEx(const char *pszIcoLibName, bool big);
// services.c
void ShowRoom(SESSION_INFO *si, WPARAM wp, BOOL bSetForeground);
diff --git a/src/core/stdchat/src/options.cpp b/src/core/stdchat/src/options.cpp index fc04aca7c2..b66c74f2b0 100644 --- a/src/core/stdchat/src/options.cpp +++ b/src/core/stdchat/src/options.cpp @@ -306,7 +306,7 @@ void AddIcons(void) }
// load icons from the skinning module if available
-HICON LoadIconEx(char* pszIcoLibName, BOOL big)
+HICON LoadIconEx(const char *pszIcoLibName, bool big)
{
char szTemp[256];
mir_snprintf(szTemp, "chat_%s", pszIcoLibName);
|