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/gtkmessagedialog.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/gtkmessagedialog.c')
-rw-r--r-- | gtk/gtkmessagedialog.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk/gtkmessagedialog.c b/gtk/gtkmessagedialog.c index c67277ebaf..fe1a5c0d7b 100644 --- a/gtk/gtkmessagedialog.c +++ b/gtk/gtkmessagedialog.c @@ -566,8 +566,7 @@ gtk_message_dialog_new (GtkWindow *parent, * instead, since you can't pass the markup string either * as the format (it might contain '%' characters) or as a string * argument. - * - * <informalexample><programlisting> + * |[ * GtkWidget *dialog; * dialog = gtk_message_dialog_new (main_application_window, * GTK_DIALOG_DESTROY_WITH_PARENT, @@ -576,7 +575,7 @@ gtk_message_dialog_new (GtkWindow *parent, * NULL); * gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG (dialog), * markup); - * </programlisting></informalexample> + * ]| * * Return value: a new #GtkMessageDialog * |