diff options
author | Chris Toshok <toshok@ximian.com> | 2003-02-20 11:12:08 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-02-20 11:12:08 +0800 |
commit | c16e468e8fb11752e9b6199a1300cc3cf0d5d6e7 (patch) | |
tree | 8871777fd2e677dc39da658a46a712905f5a300c /wombat | |
parent | 21efc37a51de80396af12f02169b4411a1a640ca (diff) | |
download | gsoc2013-evolution-c16e468e8fb11752e9b6199a1300cc3cf0d5d6e7.tar.gz gsoc2013-evolution-c16e468e8fb11752e9b6199a1300cc3cf0d5d6e7.tar.zst gsoc2013-evolution-c16e468e8fb11752e9b6199a1300cc3cf0d5d6e7.zip |
gtk_main_quit => bonobo_main_quit.
2003-02-19 Chris Toshok <toshok@ximian.com>
* wombat.c (termination_handler): gtk_main_quit =>
bonobo_main_quit.
svn path=/trunk/; revision=19959
Diffstat (limited to 'wombat')
-rw-r--r-- | wombat/ChangeLog | 5 | ||||
-rw-r--r-- | wombat/wombat.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/wombat/ChangeLog b/wombat/ChangeLog index 73456bf121..ee9432cf88 100644 --- a/wombat/ChangeLog +++ b/wombat/ChangeLog @@ -1,3 +1,8 @@ +2003-02-19 Chris Toshok <toshok@ximian.com> + + * wombat.c (termination_handler): gtk_main_quit => + bonobo_main_quit. + 2003-02-07 Rodney Dawes <dobey@ximian.com> * Makefile.am: privlibexecdir not evolibexecdir for the server file diff --git a/wombat/wombat.c b/wombat/wombat.c index 549948c195..47244afadb 100644 --- a/wombat/wombat.c +++ b/wombat/wombat.c @@ -64,7 +64,7 @@ termination_handler (gpointer data) cal_factory_get_n_backends (cal_factory) == 0 && pas_book_factory_get_n_backends (pas_book_factory) == 0) { fprintf (stderr, "termination_handler(): Terminating the Wombat. Have a nice day.\n"); - gtk_main_quit (); + bonobo_main_quit (); } termination_handler_id = 0; |