summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserentry.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2011-11-03 15:12:17 +0100
committerBenjamin Otte <otte@redhat.com>2011-12-16 20:09:11 +0100
commit05398b8f1a62ab1980b01b68fca122785e2a198a (patch)
tree5c7706787869b4621b3d87078b5578e64e5245c0 /gtk/gtkfilechooserentry.h
parent5aeac0bccb6221b8be08e957349b741b0ca00c4e (diff)
downloadgtk+-05398b8f1a62ab1980b01b68fca122785e2a198a.tar.gz
filechooserentry: Make the filesystem a construct-only argument
This allows simplifications in the code.
Diffstat (limited to 'gtk/gtkfilechooserentry.h')
-rw-r--r--gtk/gtkfilechooserentry.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk/gtkfilechooserentry.h b/gtk/gtkfilechooserentry.h
index a9c9f8388c..0c812d35aa 100644
--- a/gtk/gtkfilechooserentry.h
+++ b/gtk/gtkfilechooserentry.h
@@ -33,12 +33,11 @@ G_BEGIN_DECLS
typedef struct _GtkFileChooserEntry GtkFileChooserEntry;
GType _gtk_file_chooser_entry_get_type (void) G_GNUC_CONST;
-GtkWidget * _gtk_file_chooser_entry_new (gboolean eat_tab);
+GtkWidget * _gtk_file_chooser_entry_new (GtkFileSystem *file_system,
+ gboolean eat_tab);
void _gtk_file_chooser_entry_set_action (GtkFileChooserEntry *chooser_entry,
GtkFileChooserAction action);
GtkFileChooserAction _gtk_file_chooser_entry_get_action (GtkFileChooserEntry *chooser_entry);
-void _gtk_file_chooser_entry_set_file_system (GtkFileChooserEntry *chooser_entry,
- GtkFileSystem *file_system);
void _gtk_file_chooser_entry_set_base_folder (GtkFileChooserEntry *chooser_entry,
GFile *folder);
void _gtk_file_chooser_entry_set_file_part (GtkFileChooserEntry *chooser_entry,