diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-04 16:57:57 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-04 16:58:54 -0500 |
commit | 63e887e165a308cfc5899123d9572ffc3b6da92a (patch) | |
tree | da5a3489443cde66aceeeb77a29e69004b6842c1 /gtk/gtkwidgetpath.c | |
parent | 28376c26002cd7e9d353a9aadb880a54b7d3374d (diff) | |
download | gtk+-63e887e165a308cfc5899123d9572ffc3b6da92a.tar.gz |
docs: replace all <examples> with markdown headings
Diffstat (limited to 'gtk/gtkwidgetpath.c')
-rw-r--r-- | gtk/gtkwidgetpath.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gtk/gtkwidgetpath.c b/gtk/gtkwidgetpath.c index 9bfa58e6e6..fa431da197 100644 --- a/gtk/gtkwidgetpath.c +++ b/gtk/gtkwidgetpath.c @@ -40,8 +40,9 @@ * updated on widget hierarchy changes. * * The widget path generation is generally simple: - * <example> - * <title>Defining a button within a window</title> + * + * ## Defining a button within a window + * * |[<!-- language="C" --> * { * GtkWidgetPath *path; @@ -51,14 +52,13 @@ * gtk_widget_path_append_type (path, GTK_TYPE_BUTTON); * } * ]| - * </example> * * Although more complex information, such as widget names, or * different classes (property that may be used by other widget * types) and intermediate regions may be included: * - * <example> - * <title>Defining the first tab widget in a notebook</title> + * ## Defining the first tab widget in a notebook + * * |[<!-- language="C" --> * { * GtkWidgetPath *path; @@ -73,7 +73,6 @@ * gtk_widget_path_iter_set_name (path, pos, "first tab label"); * } * ]| - * </example> * * All this information will be used to match the style information * that applies to the described widget. |