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/gtkradioaction.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/gtkradioaction.c')
-rw-r--r-- | gtk/gtkradioaction.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkradioaction.c b/gtk/gtkradioaction.c index b2c8adee76..772dd8c57c 100644 --- a/gtk/gtkradioaction.c +++ b/gtk/gtkradioaction.c @@ -377,18 +377,18 @@ create_menu_item (GtkAction *action) * to the group. * * A common way to set up a group of radio group is the following: - * <informalexample><programlisting> + * |[ * GSList *group = NULL; * GtkRadioAction *action; * - * while (/<!-- -->* more actions to add *<!-- -->/) + * while (/* more actions to add */) * { * action = gtk_radio_action_new (...); * * gtk_radio_action_set_group (action, group); * group = gtk_radio_action_get_group (action); * } - * </programlisting></informalexample> + * ]| * * Returns: the list representing the radio group for this object * |