mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
remove dangling semicolon, fixes the segfault ebassi was seeing earlier
2007-05-14 Kristian Rietveld <kris@gtk.org> * gtk/gtkfilechooserdefault.c (recent_column_path_sort_func): remove dangling semicolon, fixes the segfault ebassi was seeing earlier today ;) svn path=/trunk/; revision=17848
This commit is contained in:
parent
96671c571e
commit
a09b7359f5
@ -1,3 +1,9 @@
|
||||
2007-05-14 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (recent_column_path_sort_func): remove
|
||||
dangling semicolon, fixes the segfault ebassi was seeing earlier today
|
||||
;)
|
||||
|
||||
2007-05-14 Tristan Van Berkom <tvb@gnome.org>
|
||||
|
||||
* gtk/gtkaboutdialog.c: Functions: gtk_about_dialog_get/set_name()
|
||||
|
@ -9508,7 +9508,7 @@ recent_column_path_sort_func (GtkTreeModel *model,
|
||||
if (!name_a)
|
||||
return 1;
|
||||
|
||||
if (!name_b);
|
||||
if (!name_b)
|
||||
return -1;
|
||||
|
||||
if (is_folder_a != is_folder_b)
|
||||
|
Loading…
Reference in New Issue
Block a user