[Gnucash-changes] r12159 - gnucash/trunk - The amount of the online transfer somehow needs to be negated in the

Christian Stimming cstim at cvs.gnucash.org
Thu Dec 15 10:57:14 EST 2005


Author: cstim
Date: 2005-12-15 10:57:12 -0500 (Thu, 15 Dec 2005)
New Revision: 12159
Trac: http://svn.gnucash.org/trac/changeset/12159

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/import-export/hbci/gnc-hbci-transfer.c
Log:
The amount of the online transfer somehow needs to be negated in the
gnucash account	now.


Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2005-12-15 15:52:58 UTC (rev 12158)
+++ gnucash/trunk/ChangeLog	2005-12-15 15:57:12 UTC (rev 12159)
@@ -1,3 +1,9 @@
+2005-12-15  Christian Stimming  <stimming at tuhh.de>
+
+	* src/import-export/hbci/gnc-hbci-transfer.c: The amount of the
+	online transfer somehow needs to be negated in the gnucash account
+	now.
+
 2005-12-10  David Hampton  <hampton at employees.org>
 
 	* src/gnome-utils/gnc-tree-model-account.c:

Modified: gnucash/trunk/src/import-export/hbci/gnc-hbci-transfer.c
===================================================================
--- gnucash/trunk/src/import-export/hbci/gnc-hbci-transfer.c	2005-12-15 15:52:58 UTC (rev 12158)
+++ gnucash/trunk/src/import-export/hbci/gnc-hbci-transfer.c	2005-12-15 15:57:12 UTC (rev 12159)
@@ -251,7 +251,7 @@
     gnc_xfer_dialog_set_amount (transdialog, gnc_numeric_neg (amount));
     case SINGLE_TRANSFER:
     default:*/
-  gnc_xfer_dialog_set_amount (transdialog, amount);
+  gnc_xfer_dialog_set_amount (transdialog, gnc_numeric_neg (amount));
   /*}*/
   /* gnc_xfer_dialog_toggle_currency_frame (transdialog, FALSE); */
 



More information about the gnucash-changes mailing list