# HG changeset patch # User Nathan Walp # Date 1061221375 0 # Node ID aefe4067d3a3adfc3ea70bca9f264a6c1c225462 # Parent e5e8d21bd4d867ccd0c543a061ca811e8be8a062 [gaim-migrate @ 7003] some tweaks from Robot101 committer: Tailor Script diff -r e5e8d21bd4d8 -r aefe4067d3a3 plugins/signals-test.c --- a/plugins/signals-test.c Mon Aug 18 10:08:26 2003 +0000 +++ b/plugins/signals-test.c Mon Aug 18 15:42:55 2003 +0000 @@ -435,7 +435,7 @@ /* Conversations subsystem signals */ gaim_signal_connect(conv_handle, "displaying-im-msg", plugin, GAIM_CALLBACK(displaying_im_msg_cb), NULL); - gaim_signal_connect(conv_handle, "displayed-img-msg", + gaim_signal_connect(conv_handle, "displayed-im-msg", plugin, GAIM_CALLBACK(displayed_im_msg_cb), NULL); gaim_signal_connect(conv_handle, "sending-im-msg", plugin, GAIM_CALLBACK(sending_im_msg_cb), NULL); diff -r e5e8d21bd4d8 -r aefe4067d3a3 plugins/statenotify.c --- a/plugins/statenotify.c Mon Aug 18 10:08:26 2003 +0000 +++ b/plugins/statenotify.c Mon Aug 18 15:42:55 2003 +0000 @@ -19,7 +19,7 @@ who = gaim_get_buddy_alias(buddy); - g_snprintf(buf, sizeof(buf), "%s %s", who, message); + g_snprintf(buf, sizeof(buf), message, who); gaim_conversation_write(conv, NULL, buf, -1, WFLAG_SYSTEM, time(NULL)); } @@ -27,25 +27,25 @@ static void buddy_away_cb(struct buddy *buddy, void *data) { - write_status(buddy, _("has gone away.")); + write_status(buddy, _("%s has gone away.")); } static void buddy_unaway_cb(struct buddy *buddy, void *data) { - write_status(buddy, _("is no longer away.")); + write_status(buddy, _("%s is no longer away.")); } static void buddy_idle_cb(struct buddy *buddy, void *data) { - write_status(buddy, _("has become idle.")); + write_status(buddy, _("%s has become idle.")); } static void buddy_unidle_cb(struct buddy *buddy, void *data) { - write_status(buddy, _("is no longer idle.")); + write_status(buddy, _("%s is no longer idle.")); } static gboolean