g_str_hash stuff -timj
g_str_hash stuff -timj
This commit is contained in:
@ -744,7 +744,7 @@ gtk_signal_compare (gint *a,
|
|||||||
static guint
|
static guint
|
||||||
gtk_signal_info_hash (GtkSignalInfo *a)
|
gtk_signal_info_hash (GtkSignalInfo *a)
|
||||||
{
|
{
|
||||||
return (g_string_hash (a->name) + a->object_type);
|
return (g_str_hash (a->name) + a->object_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
static gint
|
static gint
|
||||||
@ -752,7 +752,7 @@ gtk_signal_info_compare (GtkSignalInfo *a,
|
|||||||
GtkSignalInfo *b)
|
GtkSignalInfo *b)
|
||||||
{
|
{
|
||||||
return ((a->object_type == b->object_type) &&
|
return ((a->object_type == b->object_type) &&
|
||||||
g_string_equal (a->name, b->name));
|
g_str_equal (a->name, b->name));
|
||||||
}
|
}
|
||||||
|
|
||||||
static GtkHandler*
|
static GtkHandler*
|
||||||
|
Reference in New Issue
Block a user