From fda350b4ea803dc1e07498055eeac5033d819db6 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Wed, 17 Feb 1999 00:51:45 +0000 Subject: [PATCH] 1999-02-16 Federico Mena Quintero * gicon.c (gicon_get_filename_for_icon): Doh, use image_hash here. --- gnome/ChangeLog | 4 ++++ gnome/gicon.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gnome/ChangeLog b/gnome/ChangeLog index 58bf99425..1e67e062f 100644 --- a/gnome/ChangeLog +++ b/gnome/ChangeLog @@ -1,3 +1,7 @@ +1999-02-16 Federico Mena Quintero + + * gicon.c (gicon_get_filename_for_icon): Doh, use image_hash here. + 1999-02-16 Federico Mena Quintero * gicon.c: Lots of changes to support the little symlink/stalled diff --git a/gnome/gicon.c b/gnome/gicon.c index e359cd7c4..6bb78d980 100644 --- a/gnome/gicon.c +++ b/gnome/gicon.c @@ -445,7 +445,7 @@ gicon_get_filename_for_icon (GdkImlibImage *image) gicon_init (); - iset = g_hash_table_lookup (name_hash, image); + iset = g_hash_table_lookup (image_hash, image); g_assert (iset != NULL); return iset->filename; }