diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-02-02 00:29:00 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-02-02 00:30:27 -0500 |
commit | 09d1b28249af38448be0b52d00dd9924adac5d1c (patch) | |
tree | 9a303e4d610a4b3c5ab71e7155f021807f1b43fe /gtk/gtkinfobar.c | |
parent | 16e38946bdd3ee69d76f658afbfee272af1f52ab (diff) | |
download | gtk+-09d1b28249af38448be0b52d00dd9924adac5d1c.tar.gz |
docs: Convert to markdown
Specifically, switch to using markdown syntax for sections.
Diffstat (limited to 'gtk/gtkinfobar.c')
-rw-r--r-- | gtk/gtkinfobar.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c index 5d6dee4f34..07fa6d4722 100644 --- a/gtk/gtkinfobar.c +++ b/gtk/gtkinfobar.c @@ -72,8 +72,7 @@ * by using gtk_info_bar_set_message_type(). GTK+ may use the message type * to determine how the message is displayed. * - * <example> - * <title>Simple GtkInfoBar usage.</title> + * A simple example for using a GtkInfoBar: * |[<!-- language="C" --> * /* set up info bar */ * info_bar = gtk_info_bar_new (); @@ -98,22 +97,17 @@ * GTK_MESSAGE_ERROR); * gtk_widget_show (info_bar); * ]| - * </example> * - * <refsect2 id="GtkInfoBar-BUILDER-UI"> - * <title>GtkInfoBar as GtkBuildable</title> - * <para> + * ## GtkInfoBar as GtkBuildable + * * The GtkInfoBar implementation of the GtkBuildable interface exposes * the content area and action area as internal children with the names * "content_area" and "action_area". - * </para> - * <para> + * * GtkInfoBar supports a custom <action-widgets> element, which * can contain multiple <action-widget> elements. The "response" * attribute specifies a numeric response, and the content of the element * is the id of widget (which should be a child of the dialogs @action_area). - * </para> - * </refsect2> */ enum |