mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user