diff options
author | George Hazan <ghazan@miranda.im> | 2018-09-20 22:12:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-09-20 22:12:50 +0300 |
commit | 8d5867276a766c5447e4d4489f4649d7fb04ab72 (patch) | |
tree | f6a47b1c846346dea8ee252e21a956efe98d2e76 /protocols/JabberG/src/jabber_proto.h | |
parent | 199b5e776f261c3818817648976819f1ed0c8056 (diff) |
fix for the proper return type of PROTO<>::RecvMsg
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rwxr-xr-x | protocols/JabberG/src/jabber_proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index b02a17ae97..6bd4a2d6da 100755 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -96,7 +96,7 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface HWND SearchAdvanced(HWND owner) override;
HWND CreateExtendedSearchUI(HWND owner) override;
- int RecvMsg(MCONTACT hContact, PROTORECVEVENT*) override;
+ MEVENT RecvMsg(MCONTACT hContact, PROTORECVEVENT*) override;
int SendContacts(MCONTACT hContact, int flags, int nContacts, MCONTACT *hContactsList) override;
HANDLE SendFile(MCONTACT hContact, const wchar_t *szDescription, wchar_t **ppszFiles) override;
|