diff options
author | Federico Mena Quintero <federico@ximian.com> | 2004-03-19 21:16:24 +0000 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2004-03-19 21:16:24 +0000 |
commit | da83c1cbf3b0b9bdcd0cb9c076aaab08c4fd0faf (patch) | |
tree | cdfe84bf154c88d1c73e3a483e4528ad625552ee /gtk/gtkfilesystemunix.c | |
parent | f1c18d57d6d39390407239fffe83c1dc4416cfc8 (diff) | |
download | gtk+-da83c1cbf3b0b9bdcd0cb9c076aaab08c4fd0faf.tar.gz |
Revert the patch to #137520, as 2.4.1 is for conservative bug fixes only.
2004-03-19 Federico Mena Quintero <federico@ximian.com>
* Revert the patch to #137520, as 2.4.1 is for conservative bug
fixes only. The patch is attached to the bug report, for
reference.
2004-03-19 Morten Welinder <terra@gnome.org>
* gtk/gtkfilechooserdefault.c
Diffstat (limited to 'gtk/gtkfilesystemunix.c')
-rw-r--r-- | gtk/gtkfilesystemunix.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gtk/gtkfilesystemunix.c b/gtk/gtkfilesystemunix.c index c71a643e00..01528ce533 100644 --- a/gtk/gtkfilesystemunix.c +++ b/gtk/gtkfilesystemunix.c @@ -203,8 +203,6 @@ static gboolean gtk_file_folder_unix_list_children (GtkFileFolder *folder, GSList **children, GError **error); -static gboolean gtk_file_folder_unix_is_finished_loading (GtkFileFolder *folder); - static GtkFilePath *filename_to_path (const gchar *filename); static gboolean filename_is_root (const char *filename); @@ -1466,7 +1464,6 @@ gtk_file_folder_unix_iface_init (GtkFileFolderIface *iface) { iface->get_info = gtk_file_folder_unix_get_info; iface->list_children = gtk_file_folder_unix_list_children; - iface->is_finished_loading = gtk_file_folder_unix_is_finished_loading; } static void @@ -1626,12 +1623,6 @@ gtk_file_folder_unix_list_children (GtkFileFolder *folder, return TRUE; } -static gboolean -gtk_file_folder_unix_is_finished_loading (GtkFileFolder *folder) -{ - /* Since we don't do asynchronous loads, we are always finished loading */ - return TRUE; -} static void free_stat_info_entry (struct stat_info_entry *entry) |