aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.h
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-01-03 18:20:36 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-01-03 18:20:36 +0800
commit6cf9a97579df7e95363088485a2e6f2b833ba975 (patch)
treebbe2a0fbb7caa4e0130faf2b4929673e2fa0b7b9 /shell/e-shell.h
parent7e71a8819e5a7bddc0046d9f1e995f248ee428df (diff)
downloadgsoc2013-evolution-6cf9a97579df7e95363088485a2e6f2b833ba975.tar
gsoc2013-evolution-6cf9a97579df7e95363088485a2e6f2b833ba975.tar.gz
gsoc2013-evolution-6cf9a97579df7e95363088485a2e6f2b833ba975.tar.bz2
gsoc2013-evolution-6cf9a97579df7e95363088485a2e6f2b833ba975.tar.lz
gsoc2013-evolution-6cf9a97579df7e95363088485a2e6f2b833ba975.tar.xz
gsoc2013-evolution-6cf9a97579df7e95363088485a2e6f2b833ba975.tar.zst
gsoc2013-evolution-6cf9a97579df7e95363088485a2e6f2b833ba975.zip
** Fix for bug #219197
2008-01-03 Milan Crha <mcrha@redhat.com> ** Fix for bug #219197 * e-shell.h: * e-shell.c: (e_shell_can_quit), (e_shell_do_quit), (e_shell_quit): Call of e_shell_quit divided into two functions, one to check if quit is acceptable by all components and second to do quit. * main.c: (gnome_master_client_save_yourself_cb), (gnome_master_client_die_cb), (main): Quit application when session dies. svn path=/trunk/; revision=34754
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r--shell/e-shell.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h
index 2cd9921af0..958bb33581 100644
--- a/shell/e-shell.h
+++ b/shell/e-shell.h
@@ -129,7 +129,9 @@ void e_shell_show_settings (EShell *shell,
const char *type,
EShellWindow *shell_window);
-gboolean e_shell_quit (EShell *shell);
+gboolean e_shell_can_quit (EShell *shell);
+gboolean e_shell_do_quit (EShell *shell);
+gboolean e_shell_quit (EShell *shell);
const char *e_shell_construct_result_to_string (EShellConstructResult result);