summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-08-15 13:28:22 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-08-15 13:28:22 +0000
commitce9570dd583f2fb0e4eb7b2f6829730eec28237b (patch)
treed1769b58a75319985c910d40f454d8cc63a9d99d
parent42dc0241f39872aeccfa77dafa4552647b346622 (diff)
downloadgdk-pixbuf-ce9570dd583f2fb0e4eb7b2f6829730eec28237b.tar.gz
Correct the download location for the hicolor icon theme. (#313475, Olexiy
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)
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-2-106
-rw-r--r--ChangeLog.pre-2-86
-rw-r--r--gtk/gtkicontheme.c6
4 files changed, 23 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 106f975b8..777ce0893 100644
--- 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):
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 106f975b8..777ce0893 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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):
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 106f975b8..777ce0893 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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):
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c
index eddfddf57..8a8873fb8 100644
--- a/gtk/gtkicontheme.c
+++ b/gtk/gtkicontheme.c
@@ -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)
{