summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGoraf <22941576+Goraf@users.noreply.github.com>2018-02-24 18:45:25 +0100
committerGoraf <22941576+Goraf@users.noreply.github.com>2018-02-24 18:45:25 +0100
commitd2de6252bde0224c4b71c9dcf28afa5e7294b85b (patch)
tree5e7cdf3996161d2d097a8e0891e57b69bb900e7d /protocols
parent5ab4d212894668326b7444db9df31a382625aec8 (diff)
Jabber: remove extra qualification on members
Diffstat (limited to 'protocols')
-rwxr-xr-xprotocols/JabberG/src/jabber_proto.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h
index 718a788e1f..bca7b73ab8 100755
--- a/protocols/JabberG/src/jabber_proto.h
+++ b/protocols/JabberG/src/jabber_proto.h
@@ -285,14 +285,14 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface
//---- jabber_notes.c -----------------------------------------------------------------
- void CJabberProto::ProcessIncomingNote(CNoteItem *pNote, bool ok);
- void CJabberProto::ProcessOutgoingNote(CNoteItem *pNote, bool ok);
+ void ProcessIncomingNote(CNoteItem *pNote, bool ok);
+ void ProcessOutgoingNote(CNoteItem *pNote, bool ok);
- bool CJabberProto::OnIncomingNote(const wchar_t *szFrom, HXML hXml);
+ bool OnIncomingNote(const wchar_t *szFrom, HXML hXml);
- INT_PTR __cdecl CJabberProto::OnMenuSendNote(WPARAM, LPARAM);
- INT_PTR __cdecl CJabberProto::OnMenuHandleNotes(WPARAM, LPARAM);
- INT_PTR __cdecl CJabberProto::OnIncomingNoteEvent(WPARAM, LPARAM);
+ INT_PTR __cdecl OnMenuSendNote(WPARAM, LPARAM);
+ INT_PTR __cdecl OnMenuHandleNotes(WPARAM, LPARAM);
+ INT_PTR __cdecl OnIncomingNoteEvent(WPARAM, LPARAM);
//---- jabber_byte.c -----------------------------------------------------------------