]> git.0d.be Git - empathy.git/commitdiff
Fix a warning.
authorXavier Claessens <xclaesse@gmail.com>
Sat, 9 Jun 2007 13:07:21 +0000 (13:07 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Sat, 9 Jun 2007 13:07:21 +0000 (13:07 +0000)
2007-06-09 Xavier Claessens  <xclaesse@gmail.com>

* libempathy-gtk/empathy-contact-widget.c: Fix a warning.

svn path=/trunk/; revision=135

ChangeLog
libempathy-gtk/empathy-contact-widget.c

index c080397ac8fa32e839fc37df55099a1d96fae797..112809f0adb1357988ef0f58eb82fd3f0a57603d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-06-09 Xavier Claessens  <xclaesse@gmail.com>
+
+       * libempathy-gtk/empathy-contact-widget.c: Fix a warning.
+
 2007-06-09 Xavier Claessens  <xclaesse@gmail.com>
 
        * libempathy-gtk/empathy-main-window.c:
index 1446c87f475dd999898bb159c40e4a25fa6eaf62..e93117b3602f47c094d86c024295ce7cb006154a 100644 (file)
@@ -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