forked from AuroraMiddleware/gtk
Put debugging printout inside GTK_NOTE.
2005-08-15 Tor Lillqvist <tml@novell.com> * gtk/gtkicontheme.c (theme_lookup_icon): Put debugging printout inside GTK_NOTE.
This commit is contained in:
parent
013a0b0f11
commit
6591528e95
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user