diff options
author | George Hazan <george.hazan@gmail.com> | 2015-03-28 13:49:29 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-03-28 13:49:29 +0000 |
commit | ebd906de0e8aef7d33ccb2b4f81ad53dfb796fcf (patch) | |
tree | e2a72649284a5388375df090db0cb8d9e2e76481 /protocols/JabberG/src/jabber_iqid.cpp | |
parent | 1ab65d264fee46914571415551ed78cde14315a6 (diff) |
more code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@12536 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_iqid.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_iqid.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_iqid.cpp b/protocols/JabberG/src/jabber_iqid.cpp index d502c21daf..977da1b1e0 100644 --- a/protocols/JabberG/src/jabber_iqid.cpp +++ b/protocols/JabberG/src/jabber_iqid.cpp @@ -981,9 +981,9 @@ void CJabberProto::OnIqResultGetVcard(HXML iqNode, CJabberIqInfo*) else if (!mir_tstrcmp(xmlGetName(n), _T("DESC"))) {
if (!hasDesc && xmlGetText(n) != NULL) {
hasDesc = true;
- TCHAR *szMemo = JabberUnixToDosT(xmlGetText(n));
- setTString(hContact, "About", szMemo);
- mir_free(szMemo);
+ CMString tszMemo(xmlGetText(n));
+ tszMemo.Replace(_T("\n"), _T("\r\n"));
+ setTString(hContact, "About", tszMemo);
}
}
else if (!mir_tstrcmp(xmlGetName(n), _T("PHOTO")))
|