diff options
author | George Hazan <ghazan@miranda.im> | 2017-01-24 16:43:03 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-01-24 16:43:03 +0300 |
commit | bd851fd5cf386d4c8614c3ad114d2aaf2fcf45b5 (patch) | |
tree | e043d78d3f5301b2719ff6d89d889c87b6e2701c /protocols/MSN/src | |
parent | 40a7c77ad034b366007dff28d239d5fbf40da16f (diff) |
code cleaning
Diffstat (limited to 'protocols/MSN/src')
-rw-r--r-- | protocols/MSN/src/msn_proto.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/MSN/src/msn_proto.cpp b/protocols/MSN/src/msn_proto.cpp index f159dfac32..0868dd76e7 100644 --- a/protocols/MSN/src/msn_proto.cpp +++ b/protocols/MSN/src/msn_proto.cpp @@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "stdafx.h"
#include "msn_proto.h"
-static const COLORREF crCols[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
+static COLORREF crCols[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
int msn_httpGatewayInit(HNETLIBCONN hConn, NETLIBOPENCONNECTION *nloc, NETLIBHTTPREQUEST *nlhr);
int msn_httpGatewayBegin(HNETLIBCONN hConn, NETLIBOPENCONNECTION *nloc);
@@ -202,8 +202,8 @@ int CMsnProto::OnModulesLoaded(WPARAM, LPARAM) GCREGISTER gcr = {};
gcr.dwFlags = GC_TYPNOTIF | GC_CHANMGR;
gcr.iMaxText = 0;
- gcr.nColors = 16;
- gcr.pColors = (COLORREF*)crCols;
+ gcr.nColors = _countof(crCols);
+ gcr.pColors = crCols;
gcr.ptszDispName = m_tszUserName;
gcr.pszModule = m_szModuleName;
Chat_Register(&gcr);
|