From 189b1186bd32f9c4ee69068cff94f626305a012a Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Sat, 31 Oct 2009 21:03:25 +0000 Subject: [PATCH] Remove forgotten printf in r18402 which shouldn't have been committed to SVN. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18403 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/import-export/aqbanking/gnc-ab-utils.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/import-export/aqbanking/gnc-ab-utils.c b/src/import-export/aqbanking/gnc-ab-utils.c index 42e903c66c..31b42ffeb8 100644 --- a/src/import-export/aqbanking/gnc-ab-utils.c +++ b/src/import-export/aqbanking/gnc-ab-utils.c @@ -405,7 +405,10 @@ gnc_ab_trans_to_gnc(const AB_TRANSACTION *ab_trans, Account *gnc_acc) AB_TRANSACTION_TYPE ab_type = AB_Transaction_GetType (ab_trans); gnc_numeric gnc_amount; - printf("Transaction with value %f has type %d\n", d_value, ab_type); + /*printf("Transaction with value %f has type %d\n", d_value, ab_type);*/ + /* If the value is positive, but the transaction type says the + money is transferred away from our account (Transfer instead of + DebitNote), we switch the value to negative. */ if (d_value > 0.0 && ab_type == AB_Transaction_TypeTransfer) d_value = -d_value;