[Gnucash-changes] r13892 - gnucash/trunk - Patch from Mike Alexander to fix the cleared split date threshold in

David Hampton hampton at cvs.gnucash.org
Sun Apr 30 22:49:16 EDT 2006


Author: hampton
Date: 2006-04-30 22:49:15 -0400 (Sun, 30 Apr 2006)
New Revision: 13892
Trac: http://svn.gnucash.org/trac/changeset/13892

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/gnome/reconcile-list.c
Log:
Patch from Mike Alexander to fix the cleared split date threshold in
the reconcile window. Fixes #340235.


Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2006-04-30 23:29:02 UTC (rev 13891)
+++ gnucash/trunk/ChangeLog	2006-05-01 02:49:15 UTC (rev 13892)
@@ -1,3 +1,9 @@
+2006-04-30  David Hampton  <hampton at 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 at gmx.net>
 
 	* src/gnome-utils/gnc-html-graph-gog.c: Add legend only to

Modified: gnucash/trunk/src/gnome/reconcile-list.c
===================================================================
--- gnucash/trunk/src/gnome/reconcile-list.c	2006-04-30 23:29:02 UTC (rev 13891)
+++ gnucash/trunk/src/gnome/reconcile-list.c	2006-05-01 02:49:15 UTC (rev 13892)
@@ -183,7 +183,7 @@
       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);
     }
   }



More information about the gnucash-changes mailing list