comparison plugins/codeinline.c @ 13233:f09c6e8df82c

[gaim-migrate @ 15598] SF Patch #1417225 from Sadrul This reworks the conversation signals. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sat, 11 Feb 2006 19:16:38 +0000
parents 0747647faca1
children 8bda65b88e49
comparison
equal deleted inserted replaced
13232:c9f536f771d0 13233:f09c6e8df82c
28 #include "gtkutils.h" 28 #include "gtkutils.h"
29 #include "gtkimhtml.h" 29 #include "gtkimhtml.h"
30 30
31 GaimPlugin *plugin_handle = NULL; 31 GaimPlugin *plugin_handle = NULL;
32 32
33 static gboolean outgoing_msg_cb(GaimAccount *account, GaimConversation *conv, char **message) 33 static gboolean outgoing_msg_cb(GaimAccount *account, const char *who, char **message,
34 GaimConversation *conv, GaimMessageFlags flags, gpointer null)
34 { 35 {
35 char *m; 36 char *m;
36 char **ms = g_strsplit(*message, "<u>", -1); 37 char **ms = g_strsplit(*message, "<u>", -1);
37 m = g_strjoinv("<font face=\"monospace\" color=\"#00b025\">", ms); 38 m = g_strjoinv("<font face=\"monospace\" color=\"#00b025\">", ms);
38 g_strfreev(ms); 39 g_strfreev(ms);