diff options
author | Matthias Clasen <mclasen@redhat.com> | 2007-11-25 06:51:19 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-11-25 06:51:19 +0000 |
commit | 4896e24bb1121bf114f9daf25a105f8a815066ff (patch) | |
tree | f124808c75f514a4aeb5ba043f06e9e3892f1560 /gtk/gtktreestore.c | |
parent | 1719428849826d9baf80dcce3eb0059997919b6b (diff) | |
download | gtk+-4896e24bb1121bf114f9daf25a105f8a815066ff.tar.gz |
Require gtk-doc 1.8
2007-11-25 Matthias Clasen <mclasen@redhat.com>
* configure.in: Require gtk-doc 1.8
* */*.c: Use gtk-doc abbreviations for examples in docs.
svn path=/trunk/; revision=19041
Diffstat (limited to 'gtk/gtktreestore.c')
-rw-r--r-- | gtk/gtktreestore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktreestore.c b/gtk/gtktreestore.c index ecc4271547..928926aa7e 100644 --- a/gtk/gtktreestore.c +++ b/gtk/gtktreestore.c @@ -1388,10 +1388,10 @@ gtk_tree_store_insert_after (GtkTreeStore *tree_store, * Calling * <literal>gtk_tree_store_insert_with_values (tree_store, iter, position, ...)</literal> * has the same effect as calling - * <informalexample><programlisting> + * |[ * gtk_tree_store_insert (tree_store, iter, position); * gtk_tree_store_set (tree_store, iter, ...); - * </programlisting></informalexample> + * ]| * with the different that the former will only emit a row_inserted signal, * while the latter will emit row_inserted, row_changed and if the tree store * is sorted, rows_reordered. Since emitting the rows_reordered signal |