diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-11 13:53:27 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-11 13:53:27 +0000 |
commit | fabb5ec61205a9a3dca6f82645f257d00a534572 (patch) | |
tree | c56ec686dde3b11cd09fa55c3406f010c62cb5aa /protocols/IRCG/src/commandmonitor.cpp | |
parent | 5b39a6dadf859c73d9d5891643798a616efd4322 (diff) |
forgotten to declare two remaining fields as const
git-svn-id: http://svn.miranda-ng.org/main/trunk@7591 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG/src/commandmonitor.cpp')
-rw-r--r-- | protocols/IRCG/src/commandmonitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IRCG/src/commandmonitor.cpp b/protocols/IRCG/src/commandmonitor.cpp index 18851cdbf5..603ab055c2 100644 --- a/protocols/IRCG/src/commandmonitor.cpp +++ b/protocols/IRCG/src/commandmonitor.cpp @@ -618,7 +618,7 @@ bool CIrcProto::OnIrc_NOTICE(const CIrcMessage* pmsg) S3.Delete(S3.GetLength()-1, 1);
S3.Delete(0,1);
CMString Wnd = MakeWndID( S3.c_str());
- gci.pszID = ( TCHAR* )Wnd.c_str();
+ gci.pszID = Wnd.c_str();
if ( !CallServiceSync( MS_GC_GETINFO, 0, (LPARAM)&gci ) && gci.iType == GCW_CHATROOM )
S2 = GetWord( gci.pszID, 0 );
else
|