summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserentry.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-04-04 22:43:12 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-04-04 22:43:12 +0000
commitbc3fb55c1bd579ba6fe81f50f8865e915b9c4ff2 (patch)
tree8365c1ee14981c957dab5df4bac3dcc72a4a4ffe /gtk/gtkfilechooserentry.h
parenta013536bef931b02e96537016a2d097236868f4c (diff)
downloadgtk+-bc3fb55c1bd579ba6fe81f50f8865e915b9c4ff2.tar.gz
Move interface definition into a private header so it can refer to
Fri Apr 4 17:30:27 2003 Owen Taylor <otaylor@redhat.com> * gtkfilechooserprivate.h gtkfilechooser.h: Move interface definition into a private header so it can refer to GtkFileSystem. * *.[ch]: Switch over from using gchar *uri internally to using GtkFilePath * internally, and add conversion routines to GtkFileSystem. * TODO README: Updates.
Diffstat (limited to 'gtk/gtkfilechooserentry.h')
-rw-r--r--gtk/gtkfilechooserentry.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk/gtkfilechooserentry.h b/gtk/gtkfilechooserentry.h
index 866f725003..6c960b5bff 100644
--- a/gtk/gtkfilechooserentry.h
+++ b/gtk/gtkfilechooserentry.h
@@ -32,16 +32,16 @@ G_BEGIN_DECLS
typedef struct _GtkFileChooserEntry GtkFileChooserEntry;
-GType _gtk_file_chooser_entry_get_type (void);
-GtkWidget * _gtk_file_chooser_entry_new (void);
-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,
- const gchar *uri);
-void _gtk_file_chooser_entry_set_file_part (GtkFileChooserEntry *chooser_entry,
- const gchar *file_part);
-const gchar *_gtk_file_chooser_entry_get_current_folder (GtkFileChooserEntry *chooser_entry);
-const gchar *_gtk_file_chooser_entry_get_file_part (GtkFileChooserEntry *chooser_entry);
+GType _gtk_file_chooser_entry_get_type (void);
+GtkWidget * _gtk_file_chooser_entry_new (void);
+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,
+ const GtkFilePath *path);
+void _gtk_file_chooser_entry_set_file_part (GtkFileChooserEntry *chooser_entry,
+ const gchar *file_part);
+const GtkFilePath *_gtk_file_chooser_entry_get_current_folder (GtkFileChooserEntry *chooser_entry);
+const gchar * _gtk_file_chooser_entry_get_file_part (GtkFileChooserEntry *chooser_entry);
G_END_DECLS