diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-20 00:11:47 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-20 00:11:47 +0800 |
commit | f093b333fbee67da990d50b513333272418276e7 (patch) | |
tree | 996e2aaf9806d7adf4bef6ed2e3f4d29d53546a7 /shell/e-shell.c | |
parent | 3e519c4e1469b93c8fc6684b6aae53779d4ff270 (diff) | |
download | gsoc2013-evolution-f093b333fbee67da990d50b513333272418276e7.tar gsoc2013-evolution-f093b333fbee67da990d50b513333272418276e7.tar.gz gsoc2013-evolution-f093b333fbee67da990d50b513333272418276e7.tar.bz2 gsoc2013-evolution-f093b333fbee67da990d50b513333272418276e7.tar.lz gsoc2013-evolution-f093b333fbee67da990d50b513333272418276e7.tar.xz gsoc2013-evolution-f093b333fbee67da990d50b513333272418276e7.tar.zst gsoc2013-evolution-f093b333fbee67da990d50b513333272418276e7.zip |
Add a caption to the folder selection dialog widget, and get the
existing dialogs in the shell to use it.
svn path=/trunk/; revision=9894
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 4dc33de06d..d09ceca1ad 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -275,7 +275,11 @@ impl_Shell_selectUserFolder (PortableServer_Servant servant, /* CORBA doesn't allow you to pass a NULL pointer. */ if (!*default_folder) default_folder = NULL; - folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, title, default_folder, allowed_type_names); + folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, + title, + NULL, + default_folder, + allowed_type_names); listener_duplicate = CORBA_Object_duplicate (listener, ev); gtk_object_set_data_full (GTK_OBJECT (folder_selection_dialog), "corba_listener", |