diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libempathy-gtk/empathy-profile-chooser.c | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2007-09-27 Xavier Claessens <xclaesse@gmail.com> + + * libempathy-gtk/empathy-profile-chooser.c: Set the sort function before + begin to sort otherwise we get warnings. + 2007-09-26 Xavier Claessens <xclaesse@gmail.com> * libempathy/empathy-utils.c: diff --git a/libempathy-gtk/empathy-profile-chooser.c b/libempathy-gtk/empathy-profile-chooser.c index 62c3b0f83..ae32aff7f 100644 --- a/libempathy-gtk/empathy-profile-chooser.c +++ b/libempathy-gtk/empathy-profile-chooser.c @@ -161,13 +161,13 @@ empathy_profile_chooser_new (void) } /* Set the profile sort function */ - gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store), - COL_PROFILE, - GTK_SORT_ASCENDING); gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (store), COL_PROFILE, profile_chooser_sort_func, NULL, NULL); + gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store), + COL_PROFILE, + GTK_SORT_ASCENDING); if (iter_set) { gtk_combo_box_set_active_iter (GTK_COMBO_BOX (combo_box), &iter); |