summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_proto.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-09-15 14:52:01 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-09-15 14:52:01 +0300
commitcb1787afbb67184321f206f13f836b63cd06740a (patch)
tree0e9f9701642fd1cc9bfb63dfba9eb72dad72d383 /protocols/JabberG/src/jabber_proto.cpp
parenta232c39b9e45a77e14326511112b70d3dc405105 (diff)
PROTO_INTERFACE::SendMsg - unused parameter flags removed
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.cpp')
-rw-r--r--protocols/JabberG/src/jabber_proto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp
index bc038bb3fc..c0b8d4b93c 100644
--- a/protocols/JabberG/src/jabber_proto.cpp
+++ b/protocols/JabberG/src/jabber_proto.cpp
@@ -885,7 +885,7 @@ HANDLE CJabberProto::SendFile(MCONTACT hContact, const wchar_t *szDescription, w
////////////////////////////////////////////////////////////////////////////////////////
// JabberSendMessage - sends a message
-int CJabberProto::SendMsg(MCONTACT hContact, int /*flags*/, const char *pszSrc)
+int CJabberProto::SendMsg(MCONTACT hContact, const char *pszSrc)
{
XmlNode m("message");
return SendMsgEx(hContact, pszSrc, m);