From 22545937739888bff9964ac4cda6aa727e9fcd6a Mon Sep 17 00:00:00 2001 From: Joshua Sled Date: Thu, 15 Mar 2007 02:37:38 +0000 Subject: [PATCH] debug those schedule strings! git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15720 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome/dialog-sx-editor.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gnome/dialog-sx-editor.c b/src/gnome/dialog-sx-editor.c index 0a42bf2dd0..2a88363a00 100644 --- a/src/gnome/dialog-sx-editor.c +++ b/src/gnome/dialog-sx-editor.c @@ -411,6 +411,9 @@ gnc_sxed_check_changed( GncSxEditorDialog *sxed ) sx_start_date = *xaccSchedXactionGetStartDate(sxed->sx); sx_schedule_str = recurrenceListToString(gnc_sx_get_schedule(sxed->sx)); + g_debug("dialog schedule [%s], sx schedule [%s]", + dialog_schedule_str, sx_schedule_str); + schedules_are_the_same = (strcmp(dialog_schedule_str, sx_schedule_str) == 0); g_free(dialog_schedule_str); g_free(sx_schedule_str);