diff --git a/src/doc/sx.rst b/src/doc/sx.rst index e797aaae41..f708bc099c 100644 --- a/src/doc/sx.rst +++ b/src/doc/sx.rst @@ -123,8 +123,6 @@ TODO - gnc_dense_cal - - [ ] eliminate the XXX FIXME "cannot find tag [1]" messages. - - [ ] code cleanup - [x] min-size @@ -133,6 +131,7 @@ TODO - [ ] gconf setting for dense-cal font-size reduction - [?] better transient/floating window - [/] (re-format file) + - [x] eliminate the "couldn't find tag [1]" messages. - ! [x] font handling: gdk -> pango - [x] start-of-week := {sun,mon} (via locale) - [x] {0, 1, 2, 3, 4, 6, 12} month selection for dense calendar diff --git a/src/gnome-utils/gnc-dense-cal.c b/src/gnome-utils/gnc-dense-cal.c index df1e37678e..80fc514a60 100644 --- a/src/gnome-utils/gnc-dense-cal.c +++ b/src/gnome-utils/gnc-dense-cal.c @@ -1834,7 +1834,7 @@ gdc_mark_remove(GncDenseCal *dcal, guint mark_to_remove) } if (iter == NULL) { - g_warning("couldn't find tag [%d]", mark_to_remove); + g_message("couldn't find tag [%d]", mark_to_remove); return; } if (mark_data == NULL)