diff options
author | Not Zed <NotZed@Ximian.com> | 2002-11-18 15:52:45 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-11-18 15:52:45 +0800 |
commit | 56f74fbb19e896d8166268d268cc50a0455e31e9 (patch) | |
tree | 91679b96afcc1c8844ef13c741a8b4919dade4a5 | |
parent | eb5f7a9d05e4f4b790684a7b5a339551d84545f6 (diff) | |
download | gsoc2013-evolution-56f74fbb19e896d8166268d268cc50a0455e31e9.tar.gz gsoc2013-evolution-56f74fbb19e896d8166268d268cc50a0455e31e9.tar.zst gsoc2013-evolution-56f74fbb19e896d8166268d268cc50a0455e31e9.zip |
we need to destroy the dialog after we've run it, because run doesn't do
2002-11-18 Not Zed <NotZed@Ximian.com>
* gal/widgets/e-gui-utils.c (e_notice): we need to destroy the
dialog after we've run it, because run doesn't do it for us like
gnome-dialog did.
svn path=/trunk/; revision=18816
-rw-r--r-- | widgets/misc/e-gui-utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/misc/e-gui-utils.c b/widgets/misc/e-gui-utils.c index 44b7223869..5572333521 100644 --- a/widgets/misc/e-gui-utils.c +++ b/widgets/misc/e-gui-utils.c @@ -66,6 +66,7 @@ e_notice (GtkWindow *window, const char *type, const char *format, ...) g_free (str); gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy(dialog); } static void |