r21543 - gnucash/trunk/src/gnome-utils - Fix critical warning when quitting from the gconf startup dialog.

Geert Janssens gjanssens at code.gnucash.org
Wed Nov 9 08:43:46 EST 2011


Author: gjanssens
Date: 2011-11-09 08:43:46 -0500 (Wed, 09 Nov 2011)
New Revision: 21543
Trac: http://svn.gnucash.org/trac/changeset/21543

Modified:
   gnucash/trunk/src/gnome-utils/assistant-gconf-setup.c
Log:
Fix critical warning when quitting from the gconf startup dialog.
Problem spotted and traced by Robert Fewell in bug #663057.

Modified: gnucash/trunk/src/gnome-utils/assistant-gconf-setup.c
===================================================================
--- gnucash/trunk/src/gnome-utils/assistant-gconf-setup.c	2011-11-09 13:43:35 UTC (rev 21542)
+++ gnucash/trunk/src/gnome-utils/assistant-gconf-setup.c	2011-11-09 13:43:46 UTC (rev 21543)
@@ -675,7 +675,7 @@
         {
         case GTK_RESPONSE_CANCEL:
         default:
-            gnc_shutdown(42);
+            exit(42);
             /* never returns */
 
         case GTK_RESPONSE_NO:



More information about the gnucash-changes mailing list