diff options
author | James Booth <boothj5@gmail.com> | 2015-08-26 00:45:09 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-08-26 00:45:09 +0100 |
commit | 46256513400f4e84a209611f43d6e9d563af7deb (patch) | |
tree | 73fce5abc6497bd743b8e2cdcc2b59c3dc0d3c21 | |
parent | f998ab8f3b71922ad20646dc4598cd61d2e7bc36 (diff) | |
download | profani-tty-46256513400f4e84a209611f43d6e9d563af7deb.tar.gz |
Fixed test stubs
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index 43fc2954..8c5f9701 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -179,7 +179,7 @@ void ui_contact_online(char *barejid, Resource *resource, GDateTime *last_activi } void ui_contact_typing(const char * const barejid, const char * const resource) {} -void ui_incoming_msg(ProfChatWin *chatwin, const char * const resource, const char * const message, GDateTime *timestamp, gboolean win_created) {} +void ui_incoming_msg(ProfChatWin *chatwin, const char * const resource, const char * const message, GDateTime *timestamp, gboolean win_created, prof_enc_t enc_mode) {} void ui_message_receipt(const char * const barejid, const char * const id) {} void ui_incoming_private_msg(const char * const fulljid, const char * const message, GDateTime *timestamp) {} @@ -187,7 +187,7 @@ void ui_incoming_private_msg(const char * const fulljid, const char * const mess void ui_disconnected(void) {} void ui_recipient_gone(const char * const barejid, const char * const resource) {} -void ui_outgoing_chat_msg(ProfChatWin *chatwin, const char * const message, char *id) {} +void ui_outgoing_chat_msg(ProfChatWin *chatwin, const char * const message, char *id, prof_enc_t enc_mode) {} void ui_outgoing_chat_msg_carbon(const char * const barejid, const char * const message) {} void ui_outgoing_private_msg(ProfPrivateWin *privwin, const char * const message) {} |