diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-06-25 04:15:01 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-06-25 04:15:01 +0800 |
commit | 33ca9e6112457535017da79d1b4a61e1d546be65 (patch) | |
tree | 331fd9df2d83f7e046a2f603cb953b69fbc6f572 | |
parent | fee13e0413775487f48a06be9f67998f3538fe0b (diff) | |
download | gsoc2013-evolution-33ca9e6112457535017da79d1b4a61e1d546be65.tar gsoc2013-evolution-33ca9e6112457535017da79d1b4a61e1d546be65.tar.gz gsoc2013-evolution-33ca9e6112457535017da79d1b4a61e1d546be65.tar.bz2 gsoc2013-evolution-33ca9e6112457535017da79d1b4a61e1d546be65.tar.lz gsoc2013-evolution-33ca9e6112457535017da79d1b4a61e1d546be65.tar.xz gsoc2013-evolution-33ca9e6112457535017da79d1b4a61e1d546be65.tar.zst gsoc2013-evolution-33ca9e6112457535017da79d1b4a61e1d546be65.zip |
(impl_clicked): Pass
default_type to e_shell_show_folder_creation_dialog() properly.
[Patch by Christian Kreibich <christian@whoop.org>.]
svn path=/trunk/; revision=17265
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-folder-selection-dialog.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 75016f8c05..eb73a348bb 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2002-06-24 Ettore Perazzoli <ettore@ximian.com> + + * e-shell-folder-selection-dialog.c (impl_clicked): Pass + default_type to e_shell_show_folder_creation_dialog() properly. + [Patch by Christian Kreibich <christian@whoop.org>.] + 2002-06-19 Kjartan Maraas <kmaraas@gnome.org> * e-corba-config-page.h: Remove #include <config.h> diff --git a/shell/e-shell-folder-selection-dialog.c b/shell/e-shell-folder-selection-dialog.c index e3e5d6e3d0..e767ffd743 100644 --- a/shell/e-shell-folder-selection-dialog.c +++ b/shell/e-shell-folder-selection-dialog.c @@ -230,7 +230,7 @@ impl_clicked (GnomeDialog *dialog, e_shell_show_folder_creation_dialog (priv->shell, GTK_WINDOW (dialog), default_parent_folder, - (const char *) priv->allowed_types->data, + default_type, folder_creation_dialog_result_cb, dialog); |