diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-16 14:57:07 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-16 14:57:07 +0300 |
commit | ecee3cf571be168342936201457d00d094239a80 (patch) | |
tree | 06b3d401c7a1a76622c05b1b08d5fb33ae0aa324 /protocols/JabberG/src/jabber_proto.h | |
parent | 93e78f0795929ac87f4b85ffc9af077b257dbcda (diff) |
Jabber:
- useless parameter in CJabberProto::OnAddContactForever removed;
- when we receive subscription = remove we just change it to SUB_NONE instead of removing contact from LIST_ROSTER;
- code cleaning
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 d6144695d7..1601bfed14 100755 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -116,7 +116,7 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface INT_PTR __cdecl GetMyAwayMsg(WPARAM wParam, LPARAM lParam);
//====| Events |======================================================================
- void __cdecl OnAddContactForever(DBCONTACTWRITESETTING* cws, MCONTACT hContact);
+ void __cdecl OnAddContactForever(MCONTACT hContact);
int __cdecl OnContactDeleted(WPARAM, LPARAM);
int __cdecl OnDbSettingChanged(WPARAM, LPARAM);
int __cdecl OnIdleChanged(WPARAM, LPARAM);
|