r19477 - gnucash/trunk/src/core-utils - Fix some obsolete uses of gnucash-bin.

Geert Janssens gjanssens at code.gnucash.org
Thu Aug 26 16:13:48 EDT 2010


Author: gjanssens
Date: 2010-08-26 16:13:48 -0400 (Thu, 26 Aug 2010)
New Revision: 19477
Trac: http://svn.gnucash.org/trac/changeset/19477

Modified:
   gnucash/trunk/src/core-utils/binreloc.c
Log:
Fix some obsolete uses of gnucash-bin.

Modified: gnucash/trunk/src/core-utils/binreloc.c
===================================================================
--- gnucash/trunk/src/core-utils/binreloc.c	2010-08-26 17:22:06 UTC (rev 19476)
+++ gnucash/trunk/src/core-utils/binreloc.c	2010-08-26 20:13:48 UTC (rev 19477)
@@ -34,7 +34,7 @@
 /** @internal
  * Find the canonical filename of the executable. Returns the filename
  * (which must be freed) or NULL on error. If the parameter 'error' is
- * not NULL, the error code will be stored there, if an error occured.
+ * not NULL, the error code will be stored there, if an error occurred.
  */
 static char *
 _br_find_exe (Gnc_GbrInitError *error)
@@ -49,7 +49,7 @@
        relocation code for windows. Unfortunately this is not
        the case and we have to add this manually. This is only
        one possibility; other ways of looking up the full path
-       of gnucash-bin.exe probably exist.*/
+       of gnucash.exe probably exist.*/
     gchar *prefix;
     gchar *result;
 
@@ -58,7 +58,7 @@
        the current process */
     prefix = g_win32_get_package_installation_directory_of_module (NULL);
     result = g_build_filename (prefix,
-                               "bin", "gnucash-bin.exe",
+                               "bin", "gnucash.exe",
                                (char*)NULL);
     g_free (prefix);
     return result;



More information about the gnucash-changes mailing list