diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-24 19:36:04 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-24 19:36:04 +0800 |
commit | 949f432f56914a7c1a71de6783b21cb506f1b921 (patch) | |
tree | 5e4f0a65c7b3282d7b7d8706f595afa291572b15 /lib/ephy-file-chooser.c | |
parent | ae865c906e03be544167c899ae6e3b5f2d6f6a8e (diff) | |
download | gsoc2013-epiphany-949f432f56914a7c1a71de6783b21cb506f1b921.tar gsoc2013-epiphany-949f432f56914a7c1a71de6783b21cb506f1b921.tar.gz gsoc2013-epiphany-949f432f56914a7c1a71de6783b21cb506f1b921.tar.bz2 gsoc2013-epiphany-949f432f56914a7c1a71de6783b21cb506f1b921.tar.lz gsoc2013-epiphany-949f432f56914a7c1a71de6783b21cb506f1b921.tar.xz gsoc2013-epiphany-949f432f56914a7c1a71de6783b21cb506f1b921.tar.zst gsoc2013-epiphany-949f432f56914a7c1a71de6783b21cb506f1b921.zip |
Use our eel_gconf_set_path() function to persist the directory.
2004-01-24 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-file-chooser.c: (ephy_file_chooser_get_type),
(current_folder_changed_cb):
Use our eel_gconf_set_path() function to persist the directory.
Diffstat (limited to 'lib/ephy-file-chooser.c')
-rw-r--r-- | lib/ephy-file-chooser.c | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/lib/ephy-file-chooser.c b/lib/ephy-file-chooser.c index ecbd329f9..6a59bff5a 100644 --- a/lib/ephy-file-chooser.c +++ b/lib/ephy-file-chooser.c @@ -52,9 +52,9 @@ static GObjectClass *parent_class = NULL; GType ephy_file_chooser_get_type (void) { - static GType ephy_file_chooser_type = 0; + static GType type = 0; - if (ephy_file_chooser_type == 0) + if (type == 0) { static const GTypeInfo our_info = { @@ -69,32 +69,26 @@ ephy_file_chooser_get_type (void) (GInstanceInitFunc) ephy_file_chooser_init }; - ephy_file_chooser_type = g_type_register_static (GTK_TYPE_FILE_CHOOSER_DIALOG, - "EphyFileChooser", - &our_info, 0); + type = g_type_register_static (GTK_TYPE_FILE_CHOOSER_DIALOG, + "EphyFileChooser", + &our_info, 0); } - return ephy_file_chooser_type; + return type; } static void current_folder_changed_cb (GtkFileChooser *chooser, EphyFileChooser *dialog) { - if (dialog->priv->persist_key) + if (dialog->priv->persist_key != NULL) { - char *dir, *converted; + char *dir; dir = gtk_file_chooser_get_current_folder (chooser); - if (dir != NULL) - { - converted = g_filename_to_utf8 (dir, -1, NULL, NULL, NULL); - - eel_gconf_set_string (dialog->priv->persist_key, dir); + eel_gconf_set_path (dialog->priv->persist_key, dir); - g_free (converted); - g_free (dir); - } + g_free (dir); } } |