debug those schedule strings!

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15720 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled 2007-03-15 02:37:38 +00:00
parent 0cfc36f955
commit 2254593773

View File

@ -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);