r15236 - gnucash/trunk/src/bin - Remove windows-specific ignoring of engine_is_initialized check.

Christian Stimming cstim at cvs.gnucash.org
Wed Dec 20 10:26:02 EST 2006


Author: cstim
Date: 2006-12-20 10:26:01 -0500 (Wed, 20 Dec 2006)
New Revision: 15236
Trac: http://svn.gnucash.org/trac/changeset/15236

Modified:
   gnucash/trunk/src/bin/gnucash-bin.c
Log:
Remove windows-specific ignoring of engine_is_initialized check.

Modified: gnucash/trunk/src/bin/gnucash-bin.c
===================================================================
--- gnucash/trunk/src/bin/gnucash-bin.c	2006-12-19 16:37:55 UTC (rev 15235)
+++ gnucash/trunk/src/bin/gnucash-bin.c	2006-12-20 15:26:01 UTC (rev 15236)
@@ -361,14 +361,12 @@
             gnc_module_load(modules[i].name, modules[i].version);
     }
     if (!gnc_engine_is_initialized()) {
-#ifdef G_OS_WIN32
-        g_warning("GnuCash engine indicates it hasn't been initialized correctly. On Windows this mechanism is know not to work. Ignoring for now.\n");
-        /* See more detailed discussion here
-	   https://lists.gnucash.org/pipermail/gnucash-devel/2006-September/018529.html */
-#else
+        /* On Windows this check used to fail anyway, see
+	   https://lists.gnucash.org/pipermail/gnucash-devel/2006-September/018529.html
+	   but more recently it seems to work as expected
+	   again. 2006-12-20, cstim. */
         g_error("GnuCash engine failed to initialize.  Exiting.\n");
         exit(0);
-#endif
     }
 }
 



More information about the gnucash-changes mailing list