summaryrefslogtreecommitdiff
path: root/include/m_chat_int.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-01-15 14:53:22 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-01-15 14:53:22 +0000
commit156c91b93ca6674da6f7021b8579b62d79403f20 (patch)
tree4275a5dfd90d901d0c01912eb3d0ded87c17993b /include/m_chat_int.h
parent80d0910aafedcb860aad11995aab0dc0ca3d7585 (diff)
correct way of colors & fonts initialization
git-svn-id: http://svn.miranda-ng.org/main/trunk@7666 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_chat_int.h')
-rw-r--r--include/m_chat_int.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h
index b79d9a2d5c..cccf5475b7 100644
--- a/include/m_chat_int.h
+++ b/include/m_chat_int.h
@@ -64,10 +64,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define GC_REDRAWLOG2 (WM_USER+140)
#define GC_REDRAWLOG3 (WM_USER+141)
-#define EM_SUBCLASSED (WM_USER+200)
-#define EM_UNSUBCLASSED (WM_USER+201)
-#define EM_ACTIVATE (WM_USER+202)
-
#define TIMERID_FLASHWND 205
#define GCW_TABROOM 10
@@ -398,9 +394,9 @@ struct CHAT_MANAGER
extern CHAT_MANAGER ci, *pci;
-__forceinline void mir_getCI(void)
+__forceinline void mir_getCI(GlobalLogSettingsBase *pSettings)
{
- pci = (CHAT_MANAGER*)CallService("GChat/GetInterface", 0, 0);
+ pci = (CHAT_MANAGER*)CallService("GChat/GetInterface", 0, (LPARAM)pSettings);
}
#endif // M_CHAT_INT_H__