finch/plugins/gnthistory.c

branch
soc.2013.gobjectification.plugins
changeset 37148
50f361d39a1e
parent 36751
a9f6ae7c308e
parent 36089
c035b9a63457
child 38358
30ba44276e74
--- a/finch/plugins/gnthistory.c	Tue May 20 10:59:21 2014 +0530
+++ b/finch/plugins/gnthistory.c	Sat May 24 02:32:01 2014 +0530
@@ -115,15 +115,15 @@
 
 	header = g_strdup_printf(_("<b>Conversation with %s on %s:</b><br>"), alias,
 			purple_date_format_full(localtime(&((PurpleLog *)logs->data)->time)));
-	purple_conversation_write(c, "", header, mflag, time(NULL));
+	purple_conversation_write_system_message(c, header, mflag);
 	g_free(header);
 
 	if (flags & PURPLE_LOG_READ_NO_NEWLINE)
 		purple_str_strip_char(history, '\n');
-	purple_conversation_write(c, "", history, mflag, time(NULL));
+	purple_conversation_write_system_message(c, history, mflag);
 	g_free(history);
 
-	purple_conversation_write(c, "", "<hr>", mflag, time(NULL));
+	purple_conversation_write_system_message(c, "<hr>", mflag);
 
 	g_list_foreach(logs, (GFunc)purple_log_free, NULL);
 	g_list_free(logs);

mercurial