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/input.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/input.cpp')
-rw-r--r-- | protocols/IRCG/src/input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IRCG/src/input.cpp b/protocols/IRCG/src/input.cpp index 3288a69a40..29d5b4c14b 100644 --- a/protocols/IRCG/src/input.cpp +++ b/protocols/IRCG/src/input.cpp @@ -677,7 +677,7 @@ BOOL CIrcProto::DoHardcodedCommand(CMString text, TCHAR* window, MCONTACT hConta ulAdr = ConvertIPToInteger(m_IPFromServer ? m_myHost : m_myLocalHost);
if (ulAdr) {
- CMString contact = two; contact += _T(DCCSTRING);
+ CMString contact = two; contact += DCCSTRING;
CONTACT user = { (TCHAR*)contact.c_str(), NULL, NULL, false, false, true };
MCONTACT hContact = CList_AddContact(&user, false, false);
setByte(hContact, "DCC", 1);
|