aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-file-chooser.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-11-01 21:35:53 +0800
committerChristian Persch <chpe@src.gnome.org>2003-11-01 21:35:53 +0800
commit0cbb825713bb897942a709b09f98d0f123075794 (patch)
tree8fdb848191736e6d75c5021b814cdd1c0e159cbb /lib/ephy-file-chooser.h
parent8403d68e57c5495b753c3b845244c794c17fbfdf (diff)
downloadgsoc2013-epiphany-0cbb825713bb897942a709b09f98d0f123075794.tar
gsoc2013-epiphany-0cbb825713bb897942a709b09f98d0f123075794.tar.gz
gsoc2013-epiphany-0cbb825713bb897942a709b09f98d0f123075794.tar.bz2
gsoc2013-epiphany-0cbb825713bb897942a709b09f98d0f123075794.tar.lz
gsoc2013-epiphany-0cbb825713bb897942a709b09f98d0f123075794.tar.xz
gsoc2013-epiphany-0cbb825713bb897942a709b09f98d0f123075794.tar.zst
gsoc2013-epiphany-0cbb825713bb897942a709b09f98d0f123075794.zip
Don't set the persist key on object construction time. Fixes bug #125589.
2003-11-01 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/FilePicker.cpp: * lib/ephy-file-chooser.c: (current_folder_changed_cb), (ephy_file_chooser_init), (ephy_file_chooser_set_persist_key), (ephy_file_chooser_get_persist_key), (ephy_file_chooser_get_property), (ephy_file_chooser_class_init), (ephy_file_chooser_new): * lib/ephy-file-chooser.h: Don't set the persist key on object construction time. Fixes bug #125589.
Diffstat (limited to 'lib/ephy-file-chooser.h')
-rw-r--r--lib/ephy-file-chooser.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/lib/ephy-file-chooser.h b/lib/ephy-file-chooser.h
index f4061e9fc..7702c41d2 100644
--- a/lib/ephy-file-chooser.h
+++ b/lib/ephy-file-chooser.h
@@ -54,12 +54,17 @@ typedef struct
GtkFileChooserDialogClass parent_class;
} EphyFileChooserClass;
-GType ephy_file_chooser_get_type (void);
+GType ephy_file_chooser_get_type (void);
-EphyFileChooser *ephy_file_chooser_new (const char *title,
- GtkWidget *parent,
- GtkFileChooserAction action,
- const char *persist_key);
+EphyFileChooser *ephy_file_chooser_new (const char *title,
+ GtkWidget *parent,
+ GtkFileChooserAction action,
+ const char *persist_key);
+
+void ephy_file_chooser_set_persist_key (EphyFileChooser *dialog,
+ const char *key);
+
+const char *ephy_file_chooser_get_persist_key (EphyFileChooser *dialog);
G_END_DECLS