Renamed g_hash_table_lookup_full to g_hash_table_lookup_extended to

conform with naming conventions.
This commit is contained in:
Lauri Alanko
1998-07-09 21:35:59 +00:00
parent 7519c2338a
commit 5b52f01535
12 changed files with 58 additions and 10 deletions

View File

@@ -154,10 +154,10 @@ g_hash_table_lookup (GHashTable *hash_table,
}
gboolean
g_hash_table_lookup_full (GHashTable *hash_table,
gconstpointer lookup_key,
gpointer *orig_key,
gpointer *value)
g_hash_table_lookup_extended (GHashTable *hash_table,
gconstpointer lookup_key,
gpointer *orig_key,
gpointer *value)
{
GHashNode *node;