From e55ea95bbdfe7c9dafa6f48e0042af15b3f12cc3 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Fri, 18 Oct 2002 14:56:04 +0000 Subject: [PATCH] * gncEntryLedgerModel.c: don't use the currency symbol when printing value and tax cells. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7342 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 6 ++++++ src/business/business-ledger/gncEntryLedgerModel.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0b5cb67da9..be8a668ac4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-10-18 Derek Atkins + * dialog-date-close.c: remove unused function and non-necessary header + + * gncEntryLedgerModel.c: don't use the currency symbol when printing + value and tax cells. + 2002-10-18 Benoit Grégoire * Implement a working commodity matcher for the generic import diff --git a/src/business/business-ledger/gncEntryLedgerModel.c b/src/business/business-ledger/gncEntryLedgerModel.c index 7203fe1143..6030626467 100644 --- a/src/business/business-ledger/gncEntryLedgerModel.c +++ b/src/business/business-ledger/gncEntryLedgerModel.c @@ -426,7 +426,7 @@ static const char * get_value_entry (VirtualLocation virt_loc, value = gncEntryReturnValue (entry, ledger->is_invoice); } - return xaccPrintAmount (value, gnc_default_print_info (TRUE)); + return xaccPrintAmount (value, gnc_default_print_info (FALSE)); } static const char * get_taxval_entry (VirtualLocation virt_loc, @@ -450,7 +450,7 @@ static const char * get_taxval_entry (VirtualLocation virt_loc, value = gncEntryReturnTaxValue (entry, ledger->is_invoice); } - return xaccPrintAmount (value, gnc_default_print_info (TRUE)); + return xaccPrintAmount (value, gnc_default_print_info (FALSE)); } static const char * get_billable_entry (VirtualLocation virt_loc,