diff options
author | George Hazan <ghazan@miranda.im> | 2017-10-16 22:47:10 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-10-16 22:47:10 +0300 |
commit | 53ff16b147c30de05cd21e3f97b0ae0106dd9566 (patch) | |
tree | 9afbb24421d8282dee04878ef0476547dc4d4f1c /protocols/IRCG/src | |
parent | 472296cacaa7f230f6d99c7d1b6e44003de749af (diff) |
the whole idea of customizable colors in chat considered totally useless
Diffstat (limited to 'protocols/IRCG/src')
-rw-r--r-- | protocols/IRCG/src/ircproto.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/protocols/IRCG/src/ircproto.cpp b/protocols/IRCG/src/ircproto.cpp index de93e74c1f..85ea258941 100644 --- a/protocols/IRCG/src/ircproto.cpp +++ b/protocols/IRCG/src/ircproto.cpp @@ -156,8 +156,6 @@ CIrcProto::~CIrcProto() ////////////////////////////////////////////////////////////////////////////////////////
// OnModulesLoaded - performs hook registration
-static COLORREF crCols[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
-
static int sttCheckPerform(const char *szSetting, LPARAM lParam)
{
if (!_strnicmp(szSetting, "PERFORM:", 8)) {
@@ -194,8 +192,6 @@ int CIrcProto::OnModulesLoaded(WPARAM, LPARAM) GCREGISTER gcr = {};
gcr.dwFlags = GC_CHANMGR | GC_BOLD | GC_ITALICS | GC_UNDERLINE | GC_COLOR | GC_BKGCOLOR;
- gcr.nColors = 16;
- gcr.pColors = colors;
gcr.ptszDispName = m_tszUserName;
gcr.pszModule = m_szModuleName;
Chat_Register(&gcr);
|