summaryrefslogtreecommitdiff
path: root/gtk/gtktreemodelfilter.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-02-02 01:07:39 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-02-02 01:07:39 -0500
commit30cc1512e634417eb040bd5a287736c1ef7782d9 (patch)
tree7fcb1dbbe0e184f762bc6f29dd6e362cd01112e3 /gtk/gtktreemodelfilter.c
parent09d1b28249af38448be0b52d00dd9924adac5d1c (diff)
downloadgtk+-30cc1512e634417eb040bd5a287736c1ef7782d9.tar.gz
Docs: Use markdown for lists
This greatly reduces the amount of xml in the docs.
Diffstat (limited to 'gtk/gtktreemodelfilter.c')
-rw-r--r--gtk/gtktreemodelfilter.c34
1 files changed, 15 insertions, 19 deletions
diff --git a/gtk/gtktreemodelfilter.c b/gtk/gtktreemodelfilter.c
index f4c6a81c78..17029a0a72 100644
--- a/gtk/gtktreemodelfilter.c
+++ b/gtk/gtktreemodelfilter.c
@@ -32,25 +32,21 @@
*
* A #GtkTreeModelFilter is a tree model which wraps another tree model,
* and can do the following things:
- * <itemizedlist>
- * <listitem><para>
- * Filter specific rows, based on data from a "visible column", a column
- * storing booleans indicating whether the row should be filtered or not,
- * or based on the return value of a "visible function", which gets a
- * model, iter and user_data and returns a boolean indicating whether the
- * row should be filtered or not.
- * </para></listitem>
- * <listitem><para>
- * Modify the "appearance" of the model, using a modify function.
- * This is extremely powerful and allows for just changing
- * some values and also for creating a completely different model based on
- * the given child model.
- * </para></listitem>
- * <listitem><para>
- * Set a different root node, also known as a "virtual root". You can pass in
- * a #GtkTreePath indicating the root node for the filter at construction time.
- * </para></listitem>
- * </itemizedlist>
+ *
+ * - Filter specific rows, based on data from a "visible column", a column
+ * storing booleans indicating whether the row should be filtered or not,
+ * or based on the return value of a "visible function", which gets a
+ * model, iter and user_data and returns a boolean indicating whether the
+ * row should be filtered or not.
+ *
+ * - Modify the "appearance" of the model, using a modify function.
+ * This is extremely powerful and allows for just changing some
+ * values and also for creating a completely different model based
+ * on the given child model.
+ *
+ * - Set a different root node, also known as a "virtual root". You can pass
+ * in a #GtkTreePath indicating the root node for the filter at construction
+ * time.
*
* The basic API is similar to #GtkTreeModelSort. For an example on its usage,
* see the section on #GtkTreeModelSort.