diff options
author | Matthew Loper <mloper@src.gnome.org> | 2000-03-23 00:35:58 +0800 |
---|---|---|
committer | Matthew Loper <mloper@src.gnome.org> | 2000-03-23 00:35:58 +0800 |
commit | f286676ead838f371de0096b6bfd3c46748d84ec (patch) | |
tree | 895901d9c2203404c6e14c15d866eccc408d6212 /shell/main.c | |
parent | 44e1a62c0ca5aede11bb1a5c7551186d7618dadb (diff) | |
download | gsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.tar.gz gsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.tar.zst gsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.zip |
+ * shell/main.c (evolution_boot): gtk_signal_connect'ed "destroy"
+ to gtk_main_quit, so that the shell dies when you want it to.
+
+ * shell/e-shell-view.c (get_view): Reorganized, and added
+ assertions.
+ (e_shell_view_set_view): Added assertions.
+
+ * camel/camel-formatter.c (debug): Disabled some useless debug
+ messaging.
svn path=/trunk/; revision=2141
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/main.c b/shell/main.c index 1d6d8bed7c..1c93579d85 100644 --- a/shell/main.c +++ b/shell/main.c @@ -73,7 +73,10 @@ evolution_boot (void) e_shell_view_new (eshell, eshell->default_folders.inbox, TRUE)); - + gtk_signal_connect (GTK_OBJECT (e_shell_view), "destroy", + GTK_SIGNAL_FUNC(gtk_main_quit), + NULL); + gtk_widget_show (GTK_WIDGET (e_shell_view)); } |