Fix two instances where a function name didn't get changed for the

swig-style naming.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15703 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton
2007-03-09 20:16:36 +00:00
parent 889b1fcf4f
commit 1c379e731d
2 changed files with 2 additions and 2 deletions

View File

@@ -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))

View File

@@ -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)