From 4a1abec97eeee62aecc21f61a4e940c64714b2ea Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Tue, 7 May 2024 22:35:35 +0800 Subject: [PATCH] [window-reconcile.cpp] fix previous commit comment --- gnucash/gnome/window-reconcile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnucash/gnome/window-reconcile.cpp b/gnucash/gnome/window-reconcile.cpp index a09564bf4f..83247af59d 100644 --- a/gnucash/gnome/window-reconcile.cpp +++ b/gnucash/gnome/window-reconcile.cpp @@ -1943,7 +1943,7 @@ recnWindowWithBalance (GtkWidget *parent, Account *account, gnc_numeric new_endi ("dialog-warning", GTK_ICON_SIZE_SMALL_TOOLBAR); // find an already reconciled split whose statement date - // precedes *this* reconciliation statement date. + // is after *this* reconciliation statement date. auto has_later_recn_statement_date = [statement_date](const Split *split) { return (xaccSplitGetReconcile (split) == YREC && xaccSplitGetDateReconciled (split) > statement_date); };