renamed g_string_equal => g_str_equal renamed g_string_hash => g_str_hash
Sat Jan 17 23:52:40 1998 Owen Taylor <owt1@cornell.edu> * gstring.{c,h} gscanner.c: renamed g_string_equal => g_str_equal renamed g_string_hash => g_str_hash And const corrected. Old functions left in for now.
This commit is contained in:
@ -632,7 +632,7 @@ gtk_object_add_arg_type (const char *arg_name,
|
||||
info->arg_id = arg_id;
|
||||
|
||||
if (!arg_info_ht)
|
||||
arg_info_ht = g_hash_table_new (g_string_hash, g_string_equal);
|
||||
arg_info_ht = g_hash_table_new (g_str_hash, g_str_equal);
|
||||
|
||||
g_hash_table_insert (arg_info_ht, info->name, info);
|
||||
}
|
||||
@ -966,7 +966,7 @@ gtk_object_data_init ()
|
||||
{
|
||||
object_data_init = FALSE;
|
||||
|
||||
object_data_ht = g_hash_table_new (g_string_hash, g_string_equal);
|
||||
object_data_ht = g_hash_table_new (g_str_hash, g_str_equal);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user