Merge branch 'master' into xep-0184

Conflicts:
	src/server_events.c
	src/ui/core.c
	src/ui/ui.h
	tests/ui/stub_ui.c
This commit is contained in:
James Booth
2015-03-14 23:10:51 +00:00
4 changed files with 47 additions and 3 deletions

View File

@@ -309,8 +309,9 @@ handle_incoming_private_message(char *fulljid, char *message)
}
void
handle_carbon(char *barejid, char *message){
ui_outgoing_chat_msg(barejid, message, NULL);
handle_carbon(char *barejid, char *message)
{
ui_outgoing_chat_msg_carbon(barejid, message);
}
void
@@ -842,4 +843,4 @@ handle_muc_occupant_online(const char * const room, const char * const nick, con
}
occupantswin_occupants(room);
}
}
}