summaryrefslogtreecommitdiff
path: root/gtk/gtktreemodelsort.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-04 16:57:57 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-04 16:58:54 -0500
commit63e887e165a308cfc5899123d9572ffc3b6da92a (patch)
treeda5a3489443cde66aceeeb77a29e69004b6842c1 /gtk/gtktreemodelsort.c
parent28376c26002cd7e9d353a9aadb880a54b7d3374d (diff)
downloadgtk+-63e887e165a308cfc5899123d9572ffc3b6da92a.tar.gz
docs: replace all <examples> with markdown headings
Diffstat (limited to 'gtk/gtktreemodelsort.c')
-rw-r--r--gtk/gtktreemodelsort.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/gtk/gtktreemodelsort.c b/gtk/gtktreemodelsort.c
index f545ae7eb3..9d294e82b6 100644
--- a/gtk/gtktreemodelsort.c
+++ b/gtk/gtktreemodelsort.c
@@ -50,8 +50,8 @@
* simply put the same model in each widget, then sorting the first would
* sort the second.
*
- * <example>
- * <title>Using a #GtkTreeModelSort</title>
+ * ## Using a #GtkTreeModelSort
+ *
* |[<!-- language="C" -->
* {
* GtkTreeView *tree_view1;
@@ -78,7 +78,6 @@
* COLUMN_1, GTK_SORT_DESCENDING);
* }
* ]|
- * </example>
*
* To demonstrate how to access the underlying child model from the sort
* model, the next example will be a callback for the #GtkTreeSelection
@@ -86,8 +85,8 @@
* from COLUMN_1 of the model. We then modify the string, find the same
* selected row on the child model, and change the row there.
*
- * <example>
- * <title>Accessing the child model of in a selection changed callback</title>
+ * ## Accessing the child model of in a selection changed callback
+ *
* |[<!-- language="C" -->
* void
* selection_changed (GtkTreeSelection *selection, gpointer data)
@@ -131,7 +130,6 @@
* g_free (modified_data);
* }
* ]|
- * </example>
*/