r15703 - gnucash/trunk/src - Fix two instances where a function name didn't get changed for the

David Hampton hampton at cvs.gnucash.org
Fri Mar 9 15:16:37 EST 2007


Author: hampton
Date: 2007-03-09 15:16:36 -0500 (Fri, 09 Mar 2007)
New Revision: 15703
Trac: http://svn.gnucash.org/trac/changeset/15703

Modified:
   gnucash/trunk/src/import-export/qif-import/qif-dialog-utils.scm
   gnucash/trunk/src/report/report-system/report-utilities.scm
Log:
Fix two instances where a function name didn't get changed for the
swig-style naming.


Modified: gnucash/trunk/src/import-export/qif-import/qif-dialog-utils.scm
===================================================================
--- gnucash/trunk/src/import-export/qif-import/qif-dialog-utils.scm	2007-03-09 19:39:43 UTC (rev 15702)
+++ gnucash/trunk/src/import-export/qif-import/qif-dialog-utils.scm	2007-03-09 20:16:36 UTC (rev 15703)
@@ -609,7 +609,7 @@
                      (gnc-account-lookup-by-full-name 
                       (gnc-get-current-root-account)
                       (qif-map-entry:gnc-name map-entry)))
-		    (book (gnc-account-get-book (gnc:get-current-root-account)))
+		    (book (gnc-account-get-book (gnc-get-current-root-account)))
                     (existing-type 
                      (xaccAccountGetType existing-gnc-acct)))
                (if (and (not (null? existing-gnc-acct)) 

Modified: gnucash/trunk/src/report/report-system/report-utilities.scm
===================================================================
--- gnucash/trunk/src/report/report-system/report-utilities.scm	2007-03-09 19:39:43 UTC (rev 15702)
+++ gnucash/trunk/src/report/report-system/report-utilities.scm	2007-03-09 20:16:36 UTC (rev 15703)
@@ -135,7 +135,7 @@
 ;; Returns the depth of the current account hierarchy, that is, the
 ;; maximum level of subaccounts in the tree
 (define (gnc:get-current-account-tree-depth)
-  (let ((root (gnc:get-current-root-account)))
+  (let ((root (gnc-get-current-root-account)))
     (gnc-account-get-tree-depth root)))
 
 (define (gnc:split-get-corr-account-full-name split)



More information about the gnucash-changes mailing list