diff options
author | Owen Taylor <otaylor@redhat.com> | 2004-04-19 22:01:57 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2004-04-19 22:01:57 +0000 |
commit | 5db67b8ba21e41569031ff970a670701f2674fd9 (patch) | |
tree | 204118d8041f29b72511d26638db6b72e1d8e579 /gtk/gtkicontheme.c | |
parent | cfe7b384bc7892267d21385e3bc6a47577cbe3ce (diff) | |
download | gtk+-5db67b8ba21e41569031ff970a670701f2674fd9.tar.gz |
Update libpng and libjpeg URLs, remove note about building without since
Mon Apr 19 17:59:17 2004 Owen Taylor <otaylor@redhat.com>
* INSTALL.in: Update libpng and libjpeg URLs, remove
note about building without since that's not the normal
case.
Sun Apr 11 09:45:11 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtkicontheme.c (load_themes): Fix a couple of typos in
handling of SVG/non-SVG unthemed icons.
Diffstat (limited to 'gtk/gtkicontheme.c')
-rw-r--r-- | gtk/gtkicontheme.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index f6bc2132b3..29d9741fc8 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -994,7 +994,7 @@ load_themes (GtkIconTheme *icon_theme) { if (new_suffix == ICON_SUFFIX_SVG) { - if (unthemed_icon->no_svg_filename) + if (unthemed_icon->svg_filename) g_free (abs_file); else unthemed_icon->svg_filename = abs_file; @@ -1025,7 +1025,7 @@ load_themes (GtkIconTheme *icon_theme) if (new_suffix == ICON_SUFFIX_SVG) unthemed_icon->svg_filename = abs_file; else - unthemed_icon->svg_filename = abs_file; + unthemed_icon->no_svg_filename = abs_file; g_hash_table_insert (priv->unthemed_icons, base_name, |