r15591 - gnucash/branches/module-cleanup/src/bin - reverse the failure check logic (typo)

Peter McAlpine prock at cvs.gnucash.org
Sat Feb 17 14:59:43 EST 2007


Author: prock
Date: 2007-02-17 14:59:43 -0500 (Sat, 17 Feb 2007)
New Revision: 15591
Trac: http://svn.gnucash.org/trac/changeset/15591

Modified:
   gnucash/branches/module-cleanup/src/bin/gnucash-bin.c
Log:
reverse the failure check logic (typo)

Modified: gnucash/branches/module-cleanup/src/bin/gnucash-bin.c
===================================================================
--- gnucash/branches/module-cleanup/src/bin/gnucash-bin.c	2007-02-17 18:07:36 UTC (rev 15590)
+++ gnucash/branches/module-cleanup/src/bin/gnucash-bin.c	2007-02-17 19:59:43 UTC (rev 15591)
@@ -338,11 +338,12 @@
             gnc_module_load(modules[i].name, modules[i].version);
     }
 
-    /* FIXME
+    /* FIXME (module-cleanup)
      * This is here to aid in the de-module-ification of:
      * gnucash-register-gnome. This initialization should go somewhere else
      */
-    if (gnc_register_gnome_init()) {
+    /* gnucash/register/register-gnome*/
+    if (!gnc_register_gnome_init()) {
         g_error("Gnucash gnome register failed to initialize");
     }
 



More information about the gnucash-changes mailing list