mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
If the folder is already open, add the requested info types to it.
2004-02-09 Federico Mena Quintero <federico@ximian.com> * gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): If the folder is already open, add the requested info types to it.
This commit is contained in:
parent
b4fc0e1c9b
commit
52383cbb58
@ -1,3 +1,8 @@
|
||||
2004-02-09 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): If
|
||||
the folder is already open, add the requested info types to it.
|
||||
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-02-09 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): If
|
||||
the folder is already open, add the requested info types to it.
|
||||
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-02-09 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): If
|
||||
the folder is already open, add the requested info types to it.
|
||||
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-02-09 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): If
|
||||
the folder is already open, add the requested info types to it.
|
||||
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-02-09 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): If
|
||||
the folder is already open, add the requested info types to it.
|
||||
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
|
@ -338,7 +338,10 @@ gtk_file_system_unix_get_folder (GtkFileSystem *file_system,
|
||||
folder_unix = g_hash_table_lookup (system_unix->folder_hash, filename);
|
||||
|
||||
if (folder_unix)
|
||||
return g_object_ref (folder_unix);
|
||||
{
|
||||
folder_unix->types |= types;
|
||||
return g_object_ref (folder_unix);
|
||||
}
|
||||
else
|
||||
{
|
||||
folder_unix = g_object_new (GTK_TYPE_FILE_FOLDER_UNIX, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user