diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-23 09:10:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-23 09:10:00 +0000 |
commit | 2b7c50a79e27cc49a94df298176c67a0b602dc57 (patch) | |
tree | 06be10abd19adf68493d1f1869b85ee7e76ed147 /protocols/MSN/src/msn_chat.cpp | |
parent | 5d9e715ec7957c0bb87eb9a858420ff8a6301fbb (diff) |
also wrtrim renamed, according to the standard, to rtrimw
git-svn-id: http://svn.miranda-ng.org/main/trunk@4516 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/src/msn_chat.cpp')
-rw-r--r-- | protocols/MSN/src/msn_chat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MSN/src/msn_chat.cpp b/protocols/MSN/src/msn_chat.cpp index fc738af20d..1c78c2af7d 100644 --- a/protocols/MSN/src/msn_chat.cpp +++ b/protocols/MSN/src/msn_chat.cpp @@ -345,7 +345,7 @@ int CMsnProto::MSN_GCEventHook(WPARAM, LPARAM lParam) ThreadData* thread = MSN_GetThreadByChatId(gch->pDest->ptszID);
if (thread)
{
- trtrim(gch->ptszText); // remove the ending linebreak
+ rtrimt(gch->ptszText); // remove the ending linebreak
TCHAR* pszMsg = UnEscapeChatTags(NEWTSTR_ALLOCA(gch->ptszText));
thread->sendMessage('N', NULL, NETID_MSN, UTF8(pszMsg), 0);
|