forked from AuroraMiddleware/gtk
Use the same function as in updateiconcache.c. (spotted by Morten
2005-04-08 Matthias Clasen <mclasen@redhat.com> * gtk/gtkiconcache.c (icon_name_hash): Use the same function as in updateiconcache.c. (spotted by Morten Welinder)
This commit is contained in:
parent
7e832a73ce
commit
7cbd85cda2
@ -1,3 +1,8 @@
|
||||
2005-04-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconcache.c (icon_name_hash): Use the same function
|
||||
as in updateiconcache.c. (spotted by Morten Welinder)
|
||||
|
||||
2005-04-08 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* gdk/gdkpango.c: (emboss_context): Simplify matrix manipulation
|
||||
|
@ -1,3 +1,8 @@
|
||||
2005-04-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconcache.c (icon_name_hash): Use the same function
|
||||
as in updateiconcache.c. (spotted by Morten Welinder)
|
||||
|
||||
2005-04-08 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* gdk/gdkpango.c: (emboss_context): Simplify matrix manipulation
|
||||
|
@ -1,3 +1,8 @@
|
||||
2005-04-08 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconcache.c (icon_name_hash): Use the same function
|
||||
as in updateiconcache.c. (spotted by Morten Welinder)
|
||||
|
||||
2005-04-08 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* gdk/gdkpango.c: (emboss_context): Simplify matrix manipulation
|
||||
|
@ -223,8 +223,8 @@ _gtk_icon_cache_has_directory (GtkIconCache *cache,
|
||||
static guint
|
||||
icon_name_hash (gconstpointer key)
|
||||
{
|
||||
const char *p = key;
|
||||
guint h = *p;
|
||||
const signed char *p = key;
|
||||
guint32 h = *p;
|
||||
|
||||
if (h)
|
||||
for (p += 1; *p != '\0'; p++)
|
||||
|
Loading…
Reference in New Issue
Block a user