From a92f2337b2bd3df708180038b1a2282ba5352374 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Sat, 9 Jun 2007 13:07:21 +0000 Subject: [PATCH] Fix a warning. 2007-06-09 Xavier Claessens * libempathy-gtk/empathy-contact-widget.c: Fix a warning. svn path=/trunk/; revision=135 --- ChangeLog | 4 ++++ libempathy-gtk/empathy-contact-widget.c | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c080397a..112809f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-06-09 Xavier Claessens + + * libempathy-gtk/empathy-contact-widget.c: Fix a warning. + 2007-06-09 Xavier Claessens * libempathy-gtk/empathy-main-window.c: diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index 1446c87f..e93117b3 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -98,7 +98,7 @@ static void contact_widget_account_changed_cb (GtkComboBox static gboolean contact_widget_id_focus_out_cb (GtkWidget *widget, GdkEventFocus *event, EmpathyContactWidget *information); -static void contact_widget_entry_alias_focus_event_cb (GtkEditable *editable, +static gboolean contact_widget_entry_alias_focus_event_cb (GtkEditable *editable, GdkEventFocus *event, EmpathyContactWidget *information); static void contact_widget_name_notify_cb (EmpathyContactWidget *information); @@ -435,7 +435,7 @@ contact_widget_id_focus_out_cb (GtkWidget *widget, return FALSE; } -static void +static gboolean contact_widget_entry_alias_focus_event_cb (GtkEditable *editable, GdkEventFocus *event, EmpathyContactWidget *information) @@ -446,6 +446,8 @@ contact_widget_entry_alias_focus_event_cb (GtkEditable *editable, name = gtk_entry_get_text (GTK_ENTRY (editable)); gossip_contact_set_name (information->contact, name); } + + return FALSE; } static void -- 2.39.2