changed "#GHashTableIterator" to "#GHashTableIter" in the
authorJoseph Pingenot <solarion@src.gnome.org>
Mon, 27 Oct 2008 22:59:42 +0000 (22:59 +0000)
committerJoseph Pingenot <solarion@src.gnome.org>
Mon, 27 Oct 2008 22:59:42 +0000 (22:59 +0000)
* glib/ghash.c: changed "#GHashTableIterator" to "#GHashTableIter"
        in the documentation-comments above g_hash_table_foreach_remove()
        and g_hash_table_foreach_steal() to correctly name and link to
        GHashTableIter.  This affects the GNOME documentation website
        as well, so further steps are likely necessary beyond this subproject.
* ChangeLog modified to reflect this.

-Joseph (solarion)

svn path=/trunk/; revision=7631

ChangeLog
glib/ghash.c

index 5ef9940..403f99c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-10-27  Joseph Pingenot  <gnomesvn@digitasaru.net>
+
+       * glib/ghash.c: changed "#GHashTableIterator" to "#GHashTableIter"
+       in the documentation-comments above g_hash_table_foreach_remove()
+       and g_hash_table_foreach_steal() to correctly name and link to
+       GHashTableIter.  This affects the GNOME documentation website
+       as well, so further steps are likely necessary beyond this subproject..
+
 2008-10-23 Matthias Clasen <mclasen@redhat.com>
 
        Bug 557210 – g_compute_checksum_for_* asserts with less than 2 bytes
index d18ce07..efc2707 100644 (file)
@@ -1131,7 +1131,7 @@ g_hash_table_foreach_remove_or_steal (GHashTable *hash_table,
  * the #GHashTable, they are used to free the memory allocated for the removed
  * keys and values.
  *
- * See #GHashTableIterator for an alternative way to loop over the 
+ * See #GHashTableIter for an alternative way to loop over the 
  * key/value pairs in the hash table.
  *
  * Return value: the number of key/value pairs removed.
@@ -1157,7 +1157,7 @@ g_hash_table_foreach_remove (GHashTable *hash_table,
  * If the function returns %TRUE, then the key/value pair is removed from the
  * #GHashTable, but no key or value destroy functions are called.
  *
- * See #GHashTableIterator for an alternative way to loop over the 
+ * See #GHashTableIter for an alternative way to loop over the 
  * key/value pairs in the hash table.
  *
  * Return value: the number of key/value pairs removed.