diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/JabberG/src/jabber_svc.cpp | 2 | ||||
-rw-r--r-- | protocols/Skype/src/skype_chat.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_svc.cpp b/protocols/JabberG/src/jabber_svc.cpp index 8003584fa3..df56450d5b 100644 --- a/protocols/JabberG/src/jabber_svc.cpp +++ b/protocols/JabberG/src/jabber_svc.cpp @@ -371,7 +371,7 @@ static const TCHAR * JabberEnum2RoleStr[]={ _T("None"), _T("Visitor"), _T("Parti static void appendString(bool bIsTipper, const TCHAR *tszTitle, const TCHAR *tszValue, TCHAR* buf, size_t bufSize)
{
if (*buf) {
- const TCHAR *szSeparator = (bIsTipper) ? _T("\n") : ((IsWinVerMEPlus()) ? _T("\r\n") : _T(" | "));
+ const TCHAR *szSeparator = bIsTipper ? _T("\n") : _T("\r\n");
_tcsncat(buf, szSeparator, bufSize);
}
diff --git a/protocols/Skype/src/skype_chat.cpp b/protocols/Skype/src/skype_chat.cpp index e24b075645..84f7b8dc48 100644 --- a/protocols/Skype/src/skype_chat.cpp +++ b/protocols/Skype/src/skype_chat.cpp @@ -1733,7 +1733,7 @@ void CSkypeProto::ChatRoomParseUriComands(const wchar_t *commands) static void appendString(bool bIsTipper, const TCHAR *tszTitle, const TCHAR *tszValue, TCHAR* buf, size_t bufSize)
{
if (*buf) {
- const TCHAR *szSeparator = (bIsTipper) ? _T("\n") : ((IsWinVerMEPlus()) ? _T("\r\n") : _T(" | "));
+ const TCHAR *szSeparator = bIsTipper ? _T("\n") : _T("\r\n");
_tcsncat(buf, szSeparator, bufSize);
}
|