diff options
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);
|