r18403 - gnucash/trunk/src/import-export/aqbanking - Remove forgotten printf in r18402 which shouldn't have been committed to SVN.

Christian Stimming cstim at code.gnucash.org
Sat Oct 31 17:03:25 EDT 2009


Author: cstim
Date: 2009-10-31 17:03:25 -0400 (Sat, 31 Oct 2009)
New Revision: 18403
Trac: http://svn.gnucash.org/trac/changeset/18403

Modified:
   gnucash/trunk/src/import-export/aqbanking/gnc-ab-utils.c
Log:
Remove forgotten printf in r18402 which shouldn't have been committed to SVN.

Modified: gnucash/trunk/src/import-export/aqbanking/gnc-ab-utils.c
===================================================================
--- gnucash/trunk/src/import-export/aqbanking/gnc-ab-utils.c	2009-10-31 19:58:49 UTC (rev 18402)
+++ gnucash/trunk/src/import-export/aqbanking/gnc-ab-utils.c	2009-10-31 21:03:25 UTC (rev 18403)
@@ -405,7 +405,10 @@
     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;
 



More information about the gnucash-changes mailing list