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
This commit is contained in:
Matthias Clasen
2007-11-25 06:51:19 +00:00
committed by Matthias Clasen
parent 1719428849
commit 4896e24bb1
25 changed files with 136 additions and 138 deletions

View File

@ -139,8 +139,7 @@ gtk_cell_renderer_class_init (GtkCellRendererClass *class)
* continue to use the same kind of widget for editing in future
* releases, therefore you should check the type of @editable
* before doing any specific setup, as in the following example:
*
* <informalexample><programlisting>
* |[
* static void
* text_editing_started (GtkCellRenderer *cell,
* GtkCellEditable *editable,
@ -150,13 +149,13 @@ gtk_cell_renderer_class_init (GtkCellRendererClass *class)
* if (GTK_IS_ENTRY (editable))
* {
* GtkEntry *entry = GTK_ENTRY (editable);
* <!-- -->
* /<!-- -->* ... create a GtkEntryCompletion *<!-- -->/
* <!-- -->
*
* /&ast; ... create a GtkEntryCompletion &ast;/
*
* gtk_entry_set_completion (entry, completion);
* }
* }
* </programlisting></informalexample>
* ]|
*
* Since: 2.6
*/