r20259 - gnucash/trunk/src - Bug #641909: Fix broken price scatter plot

Christian Stimming cstim at code.gnucash.org
Wed Feb 9 14:52:22 EST 2011


Author: cstim
Date: 2011-02-09 14:52:21 -0500 (Wed, 09 Feb 2011)
New Revision: 20259
Trac: http://svn.gnucash.org/trac/changeset/20259

Modified:
   gnucash/trunk/src/core-utils/core-utils.scm
   gnucash/trunk/src/report/standard-reports/price-scatter.scm
Log:
Bug #641909: Fix broken price scatter plot

The report was unknowingly broken by the move of one function in r20209
namely gnc-locale-default-iso-currency-code from app-utils to core-utils,
and somehow this needs a re-export in the core-utils.scm declaration.
(I don't know why. For me, this confirms again this whole scheme plugin
stuff sucks, royally.)

Modified: gnucash/trunk/src/core-utils/core-utils.scm
===================================================================
--- gnucash/trunk/src/core-utils/core-utils.scm	2011-02-08 05:23:27 UTC (rev 20258)
+++ gnucash/trunk/src/core-utils/core-utils.scm	2011-02-09 19:52:21 UTC (rev 20259)
@@ -23,3 +23,4 @@
 (re-export gnc-scm-log-error)
 (re-export gnc-scm-log-msg)
 (re-export gnc-scm-log-debug)
+(re-export gnc-locale-default-iso-currency-code)

Modified: gnucash/trunk/src/report/standard-reports/price-scatter.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/price-scatter.scm	2011-02-08 05:23:27 UTC (rev 20258)
+++ gnucash/trunk/src/report/standard-reports/price-scatter.scm	2011-02-09 19:52:21 UTC (rev 20259)
@@ -27,6 +27,7 @@
 (use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
 (use-modules (srfi srfi-1))
 (use-modules (gnucash gnc-module))
+(use-modules (gnucash core-utils))
 
 (use-modules (gnucash printf))
 



More information about the gnucash-changes mailing list