Mercurial > pidgin
changeset 32697:48d35c0c6224
Fix some merging typos.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Fri, 23 Dec 2011 08:06:49 +0000 |
parents | 763d65f3f758 |
children | 91a46f726cf4 |
files | pidgin/gtkconv.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkconv.c Fri Dec 23 06:58:52 2011 +0000 +++ b/pidgin/gtkconv.c Fri Dec 23 08:06:49 2011 +0000 @@ -1231,17 +1231,17 @@ } static void -menu_get_attention_cb(GtkAction *ation, gpointer data) +menu_get_attention_cb(GObject *obj, gpointer data) { PidginWindow *win = data; PurpleConversation *conv = pidgin_conv_window_get_active_conversation(win); if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_IM) { int index; - if (widget == win->menu.get_attention) + if ((GtkAction *)obj == win->menu.get_attention) index = 0; else - index = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(widget), "index")); + index = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(obj), "index")); purple_prpl_send_attention(purple_conversation_get_connection(conv), purple_conversation_get_name(conv), index); }