mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
2001-06-23 Kevin Finn <kevinfinn@mediaone.net>
* src/gnome/window-reconcile.c: fix for display of auto end value updates. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4770 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
23b61c7fd9
commit
4c4f766745
@ -1,3 +1,8 @@
|
||||
2001-06-23 Kevin Finn <kevinfinn@mediaone.net>
|
||||
|
||||
* src/gnome/window-reconcile.c: fix for display of auto end value
|
||||
updates.
|
||||
|
||||
2001-06-23 Dave Peticolas <dave@krondo.com>
|
||||
|
||||
* doc/sgml/C/xacc-about.sgml: credits
|
||||
|
@ -333,6 +333,10 @@ gnc_start_recn_date_changed (GtkWidget *widget, startRecnWindowData *data)
|
||||
xaccAccountGetShareBalanceAsOfDate (data->account, new_date) :
|
||||
xaccAccountGetBalanceAsOfDate (data->account, new_date);
|
||||
|
||||
/* use the correct sign */
|
||||
if (gnc_reverse_balance (data->account))
|
||||
new_balance = gnc_numeric_neg (new_balance);
|
||||
|
||||
/* update the amount edit with the amount */
|
||||
gnc_amount_edit_set_amount (GNC_AMOUNT_EDIT (data->end_value), new_balance);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user