r16195 - gnucash/trunk/src - lower severity of the "couldn't find tag [%d]" messages, as we speculatively remove tags often.

Josh Sled jsled at cvs.gnucash.org
Wed Jun 20 19:42:23 EDT 2007


Author: jsled
Date: 2007-06-20 19:42:22 -0400 (Wed, 20 Jun 2007)
New Revision: 16195
Trac: http://svn.gnucash.org/trac/changeset/16195

Modified:
   gnucash/trunk/src/doc/sx.rst
   gnucash/trunk/src/gnome-utils/gnc-dense-cal.c
Log:
lower severity of the "couldn't find tag [%d]" messages, as we speculatively remove tags often.


Modified: gnucash/trunk/src/doc/sx.rst
===================================================================
--- gnucash/trunk/src/doc/sx.rst	2007-06-20 23:20:46 UTC (rev 16194)
+++ gnucash/trunk/src/doc/sx.rst	2007-06-20 23:42:22 UTC (rev 16195)
@@ -123,8 +123,6 @@
 
 - gnc_dense_cal
 
-  - [ ] eliminate the XXX FIXME "cannot find tag [1]" messages.
-
   - [ ] code cleanup
 
     - [x] min-size
@@ -133,6 +131,7 @@
   - [ ] 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

Modified: gnucash/trunk/src/gnome-utils/gnc-dense-cal.c
===================================================================
--- gnucash/trunk/src/gnome-utils/gnc-dense-cal.c	2007-06-20 23:20:46 UTC (rev 16194)
+++ gnucash/trunk/src/gnome-utils/gnc-dense-cal.c	2007-06-20 23:42:22 UTC (rev 16195)
@@ -1834,7 +1834,7 @@
     }
     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)



More information about the gnucash-changes mailing list