]> Pileus Git - ~andy/gtk/commitdiff
Correct the download location for the hicolor icon theme. (#313475, Olexiy
authorMatthias Clasen <mclasen@redhat.com>
Mon, 15 Aug 2005 13:28:22 +0000 (13:28 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 15 Aug 2005 13:28:22 +0000 (13:28 +0000)
2005-08-15  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon): Correct the
download location for the hicolor icon theme. (#313475, Olexiy
Avramchenko)

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

index 106f975b80bb8c1e57e2c4daaa3df3e01975056a..777ce089321b12d4be581cf1135b17f91ac42629 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-08-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon): Correct the 
+       download location for the hicolor icon theme. (#313475, Olexiy 
+       Avramchenko)
+
 2005-08-15  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap): 
index 106f975b80bb8c1e57e2c4daaa3df3e01975056a..777ce089321b12d4be581cf1135b17f91ac42629 100644 (file)
@@ -1,3 +1,9 @@
+2005-08-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon): Correct the 
+       download location for the hicolor icon theme. (#313475, Olexiy 
+       Avramchenko)
+
 2005-08-15  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap): 
index 106f975b80bb8c1e57e2c4daaa3df3e01975056a..777ce089321b12d4be581cf1135b17f91ac42629 100644 (file)
@@ -1,3 +1,9 @@
+2005-08-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon): Correct the 
+       download location for the hicolor icon theme. (#313475, Olexiy 
+       Avramchenko)
+
 2005-08-15  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap): 
index eddfddf574d22133a4978094bbb3e614c26d06ae..8a8873fb8acc9500047428a80b995b6240396585 100644 (file)
@@ -1181,6 +1181,7 @@ gtk_icon_theme_lookup_icon (GtkIconTheme       *icon_theme,
 
   priv = icon_theme->priv;
 
+  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)
@@ -1270,7 +1271,7 @@ gtk_icon_theme_lookup_icon (GtkIconTheme       *icon_theme,
                           "was not found either, perhaps you need to install it.\n"
                           "You can get a copy from:\n"
                           "\t%s"),
-                        icon_name, DEFAULT_THEME_NAME, "http://freedesktop.org/Software/icon-theme/releases");
+                        icon_name, DEFAULT_THEME_NAME, "http://icon-theme.freedesktop.org/releases");
            }
        }
     }
@@ -1775,6 +1776,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);
+
   return suffix;
 }
 
@@ -1815,6 +1818,7 @@ theme_lookup_icon (IconTheme          *theme,
     {
       dir = l->data;
 
+      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)
        {