diff options
author | Jonathan Blandford <jrb@redhat.com> | 2000-09-29 23:13:02 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2000-09-29 23:13:02 +0000 |
commit | b3ee868f9443d4de4b26d159e49fbd2c512ee1e8 (patch) | |
tree | 56c5fea5a86f03d50f5ff8b14410cf32d80267e0 /docs | |
parent | 79b416d0233f0f293274aa688d464fc27eaaa412 (diff) | |
download | glib-b3ee868f9443d4de4b26d159e49fbd2c512ee1e8.tar.gz |
Added function to keep symetry with g_node_insert_before. 2000-09-29
2000-09-29 Jonathan Blandford <jrb@redhat.com>
* gnode.c (g_node_insert_after): Added function to keep symetry
with g_node_insert_before.
2000-09-29 Jonathan Blandford <jrb@redhat.com>
* glib/tmpl/trees-nary.sgml: Add g_node_insert_after().
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/ChangeLog | 4 | ||||
-rw-r--r-- | docs/reference/glib/glib-sections.txt | 1 | ||||
-rw-r--r-- | docs/reference/glib/tmpl/trees-nary.sgml | 12 |
3 files changed, 17 insertions, 0 deletions
diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 6e7c13e14..a71589b82 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,7 @@ +2000-09-29 Jonathan Blandford <jrb@redhat.com> + + * glib/tmpl/trees-nary.sgml: Add g_node_insert_after(). + Thu Sep 7 12:35:35 2000 Owen Taylor <otaylor@redhat.com> * Some further makefile improvement. diff --git a/docs/reference/glib/glib-sections.txt b/docs/reference/glib/glib-sections.txt index c644286df..aeb80ca71 100644 --- a/docs/reference/glib/glib-sections.txt +++ b/docs/reference/glib/glib-sections.txt @@ -1319,6 +1319,7 @@ g_node_copy <SUBSECTION> g_node_insert g_node_insert_before +g_node_insert_after g_node_append g_node_prepend diff --git a/docs/reference/glib/tmpl/trees-nary.sgml b/docs/reference/glib/tmpl/trees-nary.sgml index 2019c861b..8916fa69b 100644 --- a/docs/reference/glib/tmpl/trees-nary.sgml +++ b/docs/reference/glib/tmpl/trees-nary.sgml @@ -113,6 +113,18 @@ the node is inserted as the last child of @parent. @Returns: the inserted #GNode. +<!-- ##### FUNCTION g_node_insert_after ##### --> +<para> +Inserts a #GNode beneath the parent after the given sibling. +</para> + +@parent: the #GNode to place @node under. +@sibling: the sibling #GNode to place @node after. If sibling is NULL, +the node is inserted as the first child of @parent. +@node: the #GNode to insert. +@Returns: the inserted #GNode. + + <!-- ##### MACRO g_node_append ##### --> <para> Inserts a #GNode as the last child of the given parent. |