diff options
author | Peter Williams <peterw@ximian.com> | 2001-08-29 02:26:48 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-08-29 02:26:48 +0800 |
commit | 7acc488236b777678bc85179c9c2f7530528884f (patch) | |
tree | 473af42caf68d859a844a06b0942978b23d2dc95 | |
parent | c984377de34d179929865b11bfc3b5aee96abaa1 (diff) | |
download | gsoc2013-evolution-7acc488236b777678bc85179c9c2f7530528884f.tar.gz gsoc2013-evolution-7acc488236b777678bc85179c9c2f7530528884f.tar.zst gsoc2013-evolution-7acc488236b777678bc85179c9c2f7530528884f.zip |
Disable interaction once the shell has quit.
2001-08-28 Peter Williams <peterw@ximian.com>
* component-factory.c (owner_unset_cb): Disable interaction once
the shell has quit.
svn path=/trunk/; revision=12500
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/component-factory.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 082d31295c..e43a1c25f2 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-08-28 Peter Williams <peterw@ximian.com> + + * component-factory.c (owner_unset_cb): Disable interaction once + the shell has quit. + 2001-08-27 Ettore Perazzoli <ettore@ximian.com> * mail-local.c: Match the studlyCapsification of diff --git a/mail/component-factory.c b/mail/component-factory.c index 80c6bdb8fc..877e0757fd 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -693,6 +693,7 @@ owner_unset_cb (EvolutionShellComponent *shell_component, gpointer user_data) unref_standard_folders (); mail_importer_uninit (); + mail_session_enable_interaction (FALSE); g_idle_add_full (G_PRIORITY_LOW, idle_quit, NULL, NULL); } |