r16458 - gnucash/branches/register-rewrite/src/gnome-utils - Print currency symbols in balance column.

Andreas Köhler andi5 at cvs.gnucash.org
Sun Aug 19 00:02:52 EDT 2007


Author: andi5
Date: 2007-08-19 00:02:51 -0400 (Sun, 19 Aug 2007)
New Revision: 16458
Trac: http://svn.gnucash.org/trac/changeset/16458

Modified:
   gnucash/branches/register-rewrite/src/gnome-utils/gnc-tree-view-transaction.c
Log:
Print currency symbols in balance column.


Modified: gnucash/branches/register-rewrite/src/gnome-utils/gnc-tree-view-transaction.c
===================================================================
--- gnucash/branches/register-rewrite/src/gnome-utils/gnc-tree-view-transaction.c	2007-08-19 03:17:30 UTC (rev 16457)
+++ gnucash/branches/register-rewrite/src/gnome-utils/gnc-tree-view-transaction.c	2007-08-19 04:02:51 UTC (rev 16458)
@@ -717,8 +717,7 @@
             num = xaccTransGetAccountBalance(trans, anchor);
             if (gnc_reverse_balance(anchor)) 
                 num = gnc_numeric_neg(num);
-            s = xaccPrintAmount(num, gnc_account_print_info(
-                                        anchor, FALSE));
+            s = xaccPrintAmount(num, gnc_account_print_info(anchor, TRUE));
         } else s = "";
         g_object_set(cell, "text", s, NULL);
         break;



More information about the gnucash-changes mailing list