diff options
author | George Hazan <ghazan@miranda.im> | 2021-04-19 11:42:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-04-19 11:42:36 +0300 |
commit | a6d12ce24f94600dea3fb64aaa3b08c7b6be11ea (patch) | |
tree | d5d27f12709232520f0c62d01179df80355d020b /protocols/WhatsAppWeb/src/proto.cpp | |
parent | 061b4f4b4032e9d12ba024950b4b5ce55efef824 (diff) |
warning fixes
Diffstat (limited to 'protocols/WhatsAppWeb/src/proto.cpp')
-rw-r--r-- | protocols/WhatsAppWeb/src/proto.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/WhatsAppWeb/src/proto.cpp b/protocols/WhatsAppWeb/src/proto.cpp index 6afd3da618..41491f3e95 100644 --- a/protocols/WhatsAppWeb/src/proto.cpp +++ b/protocols/WhatsAppWeb/src/proto.cpp @@ -96,7 +96,7 @@ void WhatsAppProto::OnModulesLoaded() ///////////////////////////////////////////////////////////////////////////////////////// // PROTO_INTERFACE implementation -MCONTACT WhatsAppProto::AddToList(int flags, PROTOSEARCHRESULT *psr) +MCONTACT WhatsAppProto::AddToList(int, PROTOSEARCHRESULT *psr) { if (psr->id.w == nullptr) return NULL; @@ -183,7 +183,7 @@ int WhatsAppProto::SetStatus(int new_status) return 0; } -int WhatsAppProto::SendMsg(MCONTACT hContact, int, const char *msg) +int WhatsAppProto::SendMsg(MCONTACT hContact, int, const char *) { ptrA jid(getStringA(hContact, DBKEY_ID)); if (jid == NULL) @@ -197,7 +197,7 @@ int WhatsAppProto::SendMsg(MCONTACT hContact, int, const char *msg) return 0; } -int WhatsAppProto::UserIsTyping(MCONTACT hContact, int type) +int WhatsAppProto::UserIsTyping(MCONTACT hContact, int) { if (hContact && isOnline()) { ptrA jid(getStringA(hContact, DBKEY_ID)); |