aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-importer.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-09-03 23:25:13 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-09-03 23:25:13 +0800
commit37b668380ee0859a014e3069cf5396b80dfbde28 (patch)
tree71325c33a26917f26b9f492f1e21de89a158b89e /shell/e-shell-importer.c
parent8ee694a7e4e9b3ac1cef2919230b33e181ec4452 (diff)
downloadgsoc2013-evolution-37b668380ee0859a014e3069cf5396b80dfbde28.tar
gsoc2013-evolution-37b668380ee0859a014e3069cf5396b80dfbde28.tar.gz
gsoc2013-evolution-37b668380ee0859a014e3069cf5396b80dfbde28.tar.bz2
gsoc2013-evolution-37b668380ee0859a014e3069cf5396b80dfbde28.tar.lz
gsoc2013-evolution-37b668380ee0859a014e3069cf5396b80dfbde28.tar.xz
gsoc2013-evolution-37b668380ee0859a014e3069cf5396b80dfbde28.tar.zst
gsoc2013-evolution-37b668380ee0859a014e3069cf5396b80dfbde28.zip
(show_import_wizard): Make the WM close
button in the dialog hide instead of destroying, using gnome_dialog_close_hides(). [#15572] svn path=/trunk/; revision=17945
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r--shell/e-shell-importer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index 43cbee91a8..dd73742e4b 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -1234,6 +1234,7 @@ show_import_wizard (BonoboUIComponent *component,
gtk_window_set_transient_for (GTK_WINDOW (data->dialog), GTK_WINDOW (user_data));
gtk_signal_connect (GTK_OBJECT (data->dialog), "destroy",
GTK_SIGNAL_FUNC (close_dialog), &dialog_open);
+ gnome_dialog_close_hides (GNOME_DIALOG (data->dialog), TRUE);
data->druid = glade_xml_get_widget (data->wizard, "druid1");
gtk_signal_connect (GTK_OBJECT (data->druid), "cancel",
@@ -1252,8 +1253,6 @@ show_import_wizard (BonoboUIComponent *component,
gtk_box_pack_start (GTK_BOX (GNOME_DRUID_PAGE_STANDARD (data->typedialog)->vbox), data->typepage->vbox, TRUE, TRUE, 0);
-
-
data->intelligent = glade_xml_get_widget (data->wizard, "page2-intelligent");
gtk_signal_connect (GTK_OBJECT (data->intelligent), "next",
GTK_SIGNAL_FUNC (next_intelligent_page), data);