diff -r bb50003b96d0 -r 2172bd6dad3e libpurple/protocols/mxit/multimx.c --- a/libpurple/protocols/mxit/multimx.c Thu May 22 17:10:34 2014 +0200 +++ b/libpurple/protocols/mxit/multimx.c Thu May 22 18:33:12 2014 +0200 @@ -226,7 +226,8 @@ { purple_debug_info(MXIT_PLUGIN_ID, "you_kicked\n"); - purple_conversation_write_message(PURPLE_CONVERSATION(chat), "MXit", _("You have been kicked from this MultiMX."), PURPLE_MESSAGE_SYSTEM, time(NULL)); + purple_conversation_write_system_message(PURPLE_CONVERSATION(chat), + _("You have been kicked from this MultiMX."), 0); purple_chat_conversation_clear_users(chat); purple_serv_got_chat_left(session->con, multimx->chatid); } @@ -574,7 +575,7 @@ /* Display system message in chat window */ tmp = g_strdup_printf("%s: %s", _("You have invited"), purple_buddy_get_alias(buddy)); - purple_conversation_write_message(PURPLE_CONVERSATION(chat), "MXit", tmp, PURPLE_MESSAGE_SYSTEM, time(NULL)); + purple_conversation_write_system_message(PURPLE_CONVERSATION(chat), tmp, 0); g_free(tmp); }