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:
Owen Taylor
1998-01-18 15:12:01 +00:00
committed by Owen Taylor
parent 11d37c5067
commit 4628759d3b
11 changed files with 152 additions and 84 deletions

View File

@ -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);
}
}