diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-12 21:11:48 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-12 21:11:48 +0300 |
commit | 2e6dde78703f4a6a954bc2942d00bbb13b7facdc (patch) | |
tree | 3b3baf80be47130dde26c20d6fe44e1a84879b92 /protocols/FacebookRM/src/proto.h | |
parent | 4f0a7d544b64cb9b4b95f448349eaea90be21425 (diff) |
unused parameters removed
Diffstat (limited to 'protocols/FacebookRM/src/proto.h')
-rw-r--r-- | protocols/FacebookRM/src/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/proto.h b/protocols/FacebookRM/src/proto.h index a9b2e798dc..999ca5b704 100644 --- a/protocols/FacebookRM/src/proto.h +++ b/protocols/FacebookRM/src/proto.h @@ -37,7 +37,7 @@ class FacebookProto : public PROTO<FacebookProto> int ParseChatParticipants(std::string *data, std::map<std::string, chatroom_participant>* participants); int ParseFriends(std::string*, std::map< std::string, facebook_user* >*, bool); int ParseHistory(std::string* data, std::vector<facebook_message>* messages, std::string* firstTimestamp); - int ParseMessages(std::string*, std::vector< facebook_message >*, std::map< std::string, facebook_notification* >*); + int ParseMessages(std::string*, std::vector< facebook_message >*); int ParseMessagesCount(std::string *data, int *messagesCount, int *unreadCount); int ParseNotifications(std::string*, std::map< std::string, facebook_notification* >*); int ParseThreadInfo(std::string* data, std::string* user_id); |