mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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
This commit is contained in:
parent
06eeaebb2a
commit
189b1186bd
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user