# HG changeset patch # User Sean Egan # Date 1182986137 0 # Node ID f9551bdd54a6a9e155fdd5c162082e253d1596fd # Parent 36ac3285b092e0d464af5ca827a14ac997766d68 Whoops! Properly order the arguments to creating the chat infopane markup diff -r 36ac3285b092 -r f9551bdd54a6 pidgin/gtkconv.c --- a/pidgin/gtkconv.c Wed Jun 27 23:00:43 2007 +0000 +++ b/pidgin/gtkconv.c Wed Jun 27 23:15:37 2007 +0000 @@ -6211,8 +6211,9 @@ const char *topic = purple_conv_chat_get_topic(chat); markup = g_strdup_printf("%s%s%s", purple_conversation_get_title(conv), + topic ? "\n" : "", pidgin_get_dim_grey_string(gtkconv->infopane), - topic ? "\n" : "", topic ? topic : ""); + topic ? topic : ""); } gtk_list_store_set(gtkconv->infopane_model, &(gtkconv->infopane_iter), TEXT_COLUMN, markup, -1);