diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-23 14:49:59 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-23 14:49:59 +0800 |
commit | c94ca2b00d744747ca744dfac2b4920ba51f2c99 (patch) | |
tree | c6cfcf90f333e475eec336726e7f7ba282e9a5ea /shell | |
parent | b106b13525048195d99bcbde31e0e535972cbab4 (diff) | |
download | gsoc2013-evolution-c94ca2b00d744747ca744dfac2b4920ba51f2c99.tar gsoc2013-evolution-c94ca2b00d744747ca744dfac2b4920ba51f2c99.tar.gz gsoc2013-evolution-c94ca2b00d744747ca744dfac2b4920ba51f2c99.tar.bz2 gsoc2013-evolution-c94ca2b00d744747ca744dfac2b4920ba51f2c99.tar.lz gsoc2013-evolution-c94ca2b00d744747ca744dfac2b4920ba51f2c99.tar.xz gsoc2013-evolution-c94ca2b00d744747ca744dfac2b4920ba51f2c99.tar.zst gsoc2013-evolution-c94ca2b00d744747ca744dfac2b4920ba51f2c99.zip |
Fix the "Quit" command so that the shell actually exits properly.
svn path=/trunk/; revision=10435
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-view-menu.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 431b87ba5e..b4b2300a29 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,10 @@ 2001-06-23 Ettore Perazzoli <ettore@ximian.com> + * e-shell-view-menu.c (command_quit): Add a `gtk_main_quit()' at + the end here. + +2001-06-23 Ettore Perazzoli <ettore@ximian.com> + * Makefile.am: Add rules to build the test component and an `install-test-component' target to install it. diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 8936fbed3d..09ea066bcf 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -157,6 +157,8 @@ command_quit (BonoboUIComponent *uih, shell = e_shell_view_get_shell (shell_view); e_shell_quit (shell); + + gtk_main_quit (); } #if 0 |