Patch from Mike Alexander to fix the cleared split date threshold in

the reconcile window. Fixes #340235.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13892 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton
2006-05-01 02:49:15 +00:00
parent 6b75ce64fc
commit d1b5d2df03
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2006-04-30 David Hampton <hampton@employees.org>
* src/gnome/reconcile-list.c: Patch from Mike Alexander to fix the
cleared split date threshold in the reconcile window. Fixes
#340235.
2006-05-01 Andreas Köhler <andi5.py@gmx.net>
* src/gnome-utils/gnc-html-graph-gog.c: Add legend only to

View File

@@ -183,7 +183,7 @@ gnc_reconcile_list_new(Account *account, GNCReconcileListType type,
g_assert (recn == NREC || recn == CREC);
if (recn == CREC &&
difftime(trans_date, statement_date) >= 0)
difftime(trans_date, statement_date) <= 0)
g_hash_table_insert (list->reconciled, split, split);
}
}