diff options
Diffstat (limited to 'protocols/JabberG/jabber_svc.cpp')
-rw-r--r-- | protocols/JabberG/jabber_svc.cpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/protocols/JabberG/jabber_svc.cpp b/protocols/JabberG/jabber_svc.cpp index ed5bfd7b78..37cc368549 100644 --- a/protocols/JabberG/jabber_svc.cpp +++ b/protocols/JabberG/jabber_svc.cpp @@ -521,12 +521,9 @@ INT_PTR __cdecl CJabberProto::JabberServiceParseXmppURI( WPARAM wParam, LPARAM l szDelim = 0;
JabberHttpUrlDecode( szMsgBody );
} }
- #if defined(_UNICODE)
- CallService(MS_MSG_SENDMESSAGE "W",(WPARAM)hContact, (LPARAM)szMsgBody);
- #else
- CallService( MS_MSG_SENDMESSAGE, (WPARAM)hContact, (LPARAM)szMsgBody );
- #endif
-
+
+ CallService(MS_MSG_SENDMESSAGE "W",(WPARAM)hContact, (LPARAM)szMsgBody);
+
return 0;
}
return 1;
@@ -759,11 +756,7 @@ INT_PTR __cdecl CJabberProto::JabberGetApi( WPARAM wParam, LPARAM lParam ) DWORD CJabberInterface::GetFlags() const
{
-#ifdef _UNICODE
return JIF_UNICODE;
-#else
- return 0;
-#endif
}
int CJabberInterface::GetVersion() const
|