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/ircproto.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/ircproto.cpp')
-rw-r--r-- | protocols/IRCG/src/ircproto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IRCG/src/ircproto.cpp b/protocols/IRCG/src/ircproto.cpp index 5a5f910aea..73c64b08ff 100644 --- a/protocols/IRCG/src/ircproto.cpp +++ b/protocols/IRCG/src/ircproto.cpp @@ -975,7 +975,7 @@ int __cdecl CIrcProto::SetAwayMsg(int status, const TCHAR* msg) ReplaceString(newStatus, _T("\r\n"), _T(" "));
if (m_statusMessage.IsEmpty() || msg == NULL || m_statusMessage != newStatus) {
if (msg == NULL || *msg == 0)
- m_statusMessage = _T(STR_AWAYMESSAGE);
+ m_statusMessage = STR_AWAYMESSAGE;
else
m_statusMessage = newStatus;
|