summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-12-04 13:40:41 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-12-04 13:40:41 +0000
commit2eaa3458b74ffdae9c91b4eb6fe84f8145af3fa1 (patch)
treeba00efa3a61d406348bd7a02b346bb60ef93fc4c /include
parentf38b1ee1bfca4a60519101c605b8c6025044c86d (diff)
- bin2hex() instead of manual loops;
- change of icon packets git-svn-id: http://svn.miranda-ng.org/main/trunk@11239 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r--include/m_chat_int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h
index b270cbf4ae..de06d7b744 100644
--- a/include/m_chat_int.h
+++ b/include/m_chat_int.h
@@ -403,8 +403,8 @@ struct CHAT_MANAGER
HANDLE hBuildMenuEvent, hSendEvent;
FONTINFO aFonts[OPTIONS_FONTCOUNT];
SESSION_INFO *wndList;
- int *logIconBmpSize;
- PBYTE *pLogIconBmpBits;
+ size_t *logIconBmpSize;
+ char **pLogIconBmpBits;
// user-defined custom callbacks
void (*OnCreateModule)(MODULEINFO*);