remove folder-mode property.

Fri Feb 27 15:06:00 2004  Jonathan Blandford  <jrb@redhat.com>

        * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): remove
        folder-mode property.

        * gtk/gtkfilechooserutils.c
        (_gtk_file_chooser_install_properties): remove FOLDER_MODE property.
This commit is contained in:
Jonathan Blandford 2004-02-27 20:08:53 +00:00 committed by Jonathan Blandford
parent 7ba7ec245d
commit 528b02a847
7 changed files with 40 additions and 9 deletions

View File

@ -1,3 +1,11 @@
Fri Feb 27 15:06:00 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooser.c (gtk_file_chooser_class_init): remove
folder-mode property.
* gtk/gtkfilechooserutils.c
(_gtk_file_chooser_install_properties): remove FOLDER_MODE property.
Thu Feb 26 17:38:40 2004 Manish Singh <yosh@gimp.org>
* gtk/gtkcombobox.c: Add function declaration for

View File

@ -1,3 +1,11 @@
Fri Feb 27 15:06:00 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooser.c (gtk_file_chooser_class_init): remove
folder-mode property.
* gtk/gtkfilechooserutils.c
(_gtk_file_chooser_install_properties): remove FOLDER_MODE property.
Thu Feb 26 17:38:40 2004 Manish Singh <yosh@gimp.org>
* gtk/gtkcombobox.c: Add function declaration for

View File

@ -1,3 +1,11 @@
Fri Feb 27 15:06:00 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooser.c (gtk_file_chooser_class_init): remove
folder-mode property.
* gtk/gtkfilechooserutils.c
(_gtk_file_chooser_install_properties): remove FOLDER_MODE property.
Thu Feb 26 17:38:40 2004 Manish Singh <yosh@gimp.org>
* gtk/gtkcombobox.c: Add function declaration for

View File

@ -1,3 +1,11 @@
Fri Feb 27 15:06:00 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooser.c (gtk_file_chooser_class_init): remove
folder-mode property.
* gtk/gtkfilechooserutils.c
(_gtk_file_chooser_install_properties): remove FOLDER_MODE property.
Thu Feb 26 17:38:40 2004 Manish Singh <yosh@gimp.org>
* gtk/gtkcombobox.c: Add function declaration for

View File

@ -1,3 +1,11 @@
Fri Feb 27 15:06:00 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooser.c (gtk_file_chooser_class_init): remove
folder-mode property.
* gtk/gtkfilechooserutils.c
(_gtk_file_chooser_install_properties): remove FOLDER_MODE property.
Thu Feb 26 17:38:40 2004 Manish Singh <yosh@gimp.org>
* gtk/gtkcombobox.c: Add function declaration for

View File

@ -106,12 +106,6 @@ gtk_file_chooser_class_init (gpointer g_iface)
P_("The current filter for selecting which files are displayed"),
GTK_TYPE_FILE_FILTER,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_boolean ("folder-mode",
P_("Folder Mode"),
P_("Whether to select folders rather than files"),
FALSE,
G_PARAM_READWRITE));
g_object_interface_install_property (g_iface,
g_param_spec_boolean ("local-only",
P_("Local Only"),

View File

@ -88,9 +88,6 @@ _gtk_file_chooser_install_properties (GObjectClass *klass)
g_object_class_override_property (klass,
GTK_FILE_CHOOSER_PROP_FILTER,
"filter");
g_object_class_override_property (klass,
GTK_FILE_CHOOSER_PROP_FOLDER_MODE,
"folder-mode");
g_object_class_override_property (klass,
GTK_FILE_CHOOSER_PROP_LOCAL_ONLY,
"local-only");