diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-04-05 17:56:53 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-04-05 17:56:53 +0000 |
commit | 346981c06e7e810d44a0fc05c649f538c501ae21 (patch) | |
tree | 202779c6ea8d8ca69ab9cacbd1a05568b04c7551 /protocols/IRCG/src/clist.cpp | |
parent | eaab3f090b5928e49938e0d880d4268e9843be02 (diff) |
- fixes #640 (IRC: "server code page option" reset its value)
- ressource fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@8865 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG/src/clist.cpp')
-rw-r--r-- | protocols/IRCG/src/clist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IRCG/src/clist.cpp b/protocols/IRCG/src/clist.cpp index 077e325ed7..17373420c2 100644 --- a/protocols/IRCG/src/clist.cpp +++ b/protocols/IRCG/src/clist.cpp @@ -34,7 +34,7 @@ BOOL CIrcProto::CList_AddDCCChat(const CMString& name, const CMString& hostmask, if (hc && db_get_b(hc, "CList", "NotOnList", 0) == 0 && db_get_b(hc, "CList", "Hidden", 0) == 0)
bFlag = true;
- CMString contactname = name; contactname += _T(DCCSTRING);
+ CMString contactname = name; contactname += DCCSTRING;
CONTACT user = { (TCHAR*)contactname.c_str(), NULL, NULL, false, false, true };
hContact = CList_AddContact(&user, false, false);
|