]> Pileus Git - ~andy/gtk/commitdiff
Put debugging printout inside GTK_NOTE.
authorTor Lillqvist <tml@novell.com>
Mon, 15 Aug 2005 19:36:32 +0000 (19:36 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Mon, 15 Aug 2005 19:36:32 +0000 (19:36 +0000)
2005-08-15  Tor Lillqvist  <tml@novell.com>

* gtk/gtkicontheme.c (theme_lookup_icon): Put debugging printout
inside GTK_NOTE.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkicontheme.c

index 518541c52b418e2bb8e6d3d305bce045bb68d4c9..0ff75b44aa8a94bdef5855c473943b235fe1bf2c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-15  Tor Lillqvist  <tml@novell.com>
+
+       * gtk/gtkicontheme.c (theme_lookup_icon): Put debugging printout
+       inside GTK_NOTE.
+
 2005-08-15  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Fix have_base_pc / have_base_x_pc typo.
index 518541c52b418e2bb8e6d3d305bce045bb68d4c9..0ff75b44aa8a94bdef5855c473943b235fe1bf2c 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-15  Tor Lillqvist  <tml@novell.com>
+
+       * gtk/gtkicontheme.c (theme_lookup_icon): Put debugging printout
+       inside GTK_NOTE.
+
 2005-08-15  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Fix have_base_pc / have_base_x_pc typo.
index 518541c52b418e2bb8e6d3d305bce045bb68d4c9..0ff75b44aa8a94bdef5855c473943b235fe1bf2c 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-15  Tor Lillqvist  <tml@novell.com>
+
+       * gtk/gtkicontheme.c (theme_lookup_icon): Put debugging printout
+       inside GTK_NOTE.
+
 2005-08-15  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Fix have_base_pc / have_base_x_pc typo.
index 8a8873fb8acc9500047428a80b995b6240396585..267c23418faffd0989621a87112eafd653e70f9e 100644 (file)
@@ -1181,7 +1181,8 @@ gtk_icon_theme_lookup_icon (GtkIconTheme       *icon_theme,
 
   priv = icon_theme->priv;
 
-  g_print ("gtk_icon_theme_lookup_icon %s\n", icon_name);
+  GTK_NOTE (ICONTHEME, 
+           g_print ("gtk_icon_theme_lookup_icon %s\n", icon_name));
   if (flags & GTK_ICON_LOOKUP_NO_SVG)
     allow_svg = FALSE;
   else if (flags & GTK_ICON_LOOKUP_FORCE_SVG)
@@ -1776,7 +1777,8 @@ theme_dir_get_icon_suffix (IconThemeDir *dir,
   else
       suffix = GPOINTER_TO_UINT (g_hash_table_lookup (dir->icons, icon_name));
 
-  g_print ("get_icon_suffix%s %d\n", dir->cache ? " (cached)" : "", suffix);
+  GTK_NOTE (ICONTHEME, 
+           g_print ("get_icon_suffix%s %d\n", dir->cache ? " (cached)" : "", suffix));
 
   return suffix;
 }
@@ -1818,7 +1820,8 @@ theme_lookup_icon (IconTheme          *theme,
     {
       dir = l->data;
 
-      g_print ("theme_lookup_icon dir %s\n", dir->dir);
+      GTK_NOTE (ICONTHEME, 
+               g_print ("theme_lookup_icon dir %s\n", dir->dir));
       suffix = theme_dir_get_icon_suffix (dir, icon_name, NULL);
       if (best_suffix (suffix, allow_svg) != ICON_SUFFIX_NONE)
        {