mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-24 11:12:11 +01:00
Clarify some docs. (#302062, Matthew F. Barnes)
2005-04-29 Matthias Clasen <mclasen@redhat.com> * glib/gtree.c: Clarify some docs. (#302062, Matthew F. Barnes)
This commit is contained in:
parent
b8c7b38b00
commit
b2401b8e3d
@ -1,3 +1,7 @@
|
|||||||
|
2005-04-29 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/gtree.c: Clarify some docs. (#302062, Matthew F. Barnes)
|
||||||
|
|
||||||
2005-04-28 Matthias Clasen <mclasen@redhat.com>
|
2005-04-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gstrfuncs.c (g_strcompress): Warn and don't crash
|
* glib/gstrfuncs.c (g_strcompress): Warn and don't crash
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2005-04-29 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/gtree.c: Clarify some docs. (#302062, Matthew F. Barnes)
|
||||||
|
|
||||||
2005-04-28 Matthias Clasen <mclasen@redhat.com>
|
2005-04-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gstrfuncs.c (g_strcompress): Warn and don't crash
|
* glib/gstrfuncs.c (g_strcompress): Warn and don't crash
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2005-04-29 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/gtree.c: Clarify some docs. (#302062, Matthew F. Barnes)
|
||||||
|
|
||||||
2005-04-28 Matthias Clasen <mclasen@redhat.com>
|
2005-04-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gstrfuncs.c (g_strcompress): Warn and don't crash
|
* glib/gstrfuncs.c (g_strcompress): Warn and don't crash
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2005-04-29 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/gtree.c: Clarify some docs. (#302062, Matthew F. Barnes)
|
||||||
|
|
||||||
2005-04-28 Matthias Clasen <mclasen@redhat.com>
|
2005-04-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gstrfuncs.c (g_strcompress): Warn and don't crash
|
* glib/gstrfuncs.c (g_strcompress): Warn and don't crash
|
||||||
|
@ -340,6 +340,7 @@ g_tree_replace (GTree *tree,
|
|||||||
* If the #GTree was created using g_tree_new_full(), the key and value
|
* If the #GTree was created using g_tree_new_full(), the key and value
|
||||||
* are freed using the supplied destroy functions, otherwise you have to
|
* are freed using the supplied destroy functions, otherwise you have to
|
||||||
* make sure that any dynamically allocated values are freed yourself.
|
* make sure that any dynamically allocated values are freed yourself.
|
||||||
|
* If the key does not exist in the #GTree, the function does nothing.
|
||||||
**/
|
**/
|
||||||
void
|
void
|
||||||
g_tree_remove (GTree *tree,
|
g_tree_remove (GTree *tree,
|
||||||
@ -357,6 +358,8 @@ g_tree_remove (GTree *tree,
|
|||||||
*
|
*
|
||||||
* Removes a key and its associated value from a #GTree without calling
|
* Removes a key and its associated value from a #GTree without calling
|
||||||
* the key and value destroy functions.
|
* the key and value destroy functions.
|
||||||
|
*
|
||||||
|
* If the key does not exist in the #GTree, the function does nothing.
|
||||||
**/
|
**/
|
||||||
void
|
void
|
||||||
g_tree_steal (GTree *tree,
|
g_tree_steal (GTree *tree,
|
||||||
@ -376,7 +379,8 @@ g_tree_steal (GTree *tree,
|
|||||||
* automatically balanced as key/value pairs are added, key lookup is very
|
* automatically balanced as key/value pairs are added, key lookup is very
|
||||||
* fast.
|
* fast.
|
||||||
*
|
*
|
||||||
* Return value: the value corresponding to the key.
|
* Return value: the value corresponding to the key, or %NULL if the key was
|
||||||
|
* not found.
|
||||||
**/
|
**/
|
||||||
gpointer
|
gpointer
|
||||||
g_tree_lookup (GTree *tree,
|
g_tree_lookup (GTree *tree,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user