diff --git a/gnucash/report/business-reports/balsheet-eg.eguile.scm b/gnucash/report/business-reports/balsheet-eg.eguile.scm index 4066ad5456..1bcec52bf3 100644 --- a/gnucash/report/business-reports/balsheet-eg.eguile.scm +++ b/gnucash/report/business-reports/balsheet-eg.eguile.scm @@ -128,7 +128,7 @@
-
-+secs opt-date-tp)) (opt-columns (get-option display-page optname-columns)) (opt-font-family (get-option display-page optname-font-family)) (opt-font-size (get-option display-page optname-font-size)) @@ -424,7 +423,7 @@ ;; exchange rates calculation parameters (exchange-fn - (gnc:case-exchange-fn opt-price-source opt-report-commodity opt-date-tp)) + (gnc:case-exchange-fn opt-price-source opt-report-commodity opt-date)) ; List of commodities (other than the local one) used ; so that exchange rate table can be displayed. ; xlist will become an association list of (comm . #t) pairs @@ -524,7 +523,7 @@ (>= (gnc-account-get-current-depth (car account-list)) curr-depth)) (let* ((account (car account-list)) (comm (xaccAccountGetCommodity account)) - (bal (xaccAccountGetBalanceAsOfDate account opt-date-secs)) + (bal (xaccAccountGetBalanceAsOfDate account opt-date)) (depth (flattened-acc-depth account)) (treedepth 1) ; Next account only qualifies as 'deeper' if we're not flattening |