summaryrefslogtreecommitdiff
path: root/gtk/gtktreestore.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-19 18:49:43 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-19 18:56:05 -0500
commit469d333aa27c67f7d9b2f3923d62fef8519ff2ba (patch)
treeacacd39d222efb5f22738a36115ed946c43f7797 /gtk/gtktreestore.c
parenta6084e264de0c1471ba93a20dd74f19c92a8afc6 (diff)
downloadgtk+-469d333aa27c67f7d9b2f3923d62fef8519ff2ba.tar.gz
docs: use Returns: consistently
Instead of Return value:
Diffstat (limited to 'gtk/gtktreestore.c')
-rw-r--r--gtk/gtktreestore.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtktreestore.c b/gtk/gtktreestore.c
index 2fbc6a6a29..1ef7a3989c 100644
--- a/gtk/gtktreestore.c
+++ b/gtk/gtktreestore.c
@@ -308,7 +308,7 @@ gtk_tree_store_init (GtkTreeStore *tree_store)
* GDK_TYPE_PIXBUF);` will create a new #GtkTreeStore with three columns, of type
* #gint, #gchararray, and #GdkPixbuf respectively.
*
- * Return value: a new #GtkTreeStore
+ * Returns: a new #GtkTreeStore
**/
GtkTreeStore *
gtk_tree_store_new (gint n_columns,
@@ -348,7 +348,7 @@ gtk_tree_store_new (gint n_columns,
*
* Non vararg creation function. Used primarily by language bindings.
*
- * Return value: (transfer full): a new #GtkTreeStore
+ * Returns: (transfer full): a new #GtkTreeStore
**/
GtkTreeStore *
gtk_tree_store_newv (gint n_columns,
@@ -1196,7 +1196,7 @@ gtk_tree_store_set (GtkTreeStore *tree_store,
* next valid row at that level, or invalidated if it previously pointed to the
* last one.
*
- * Return value: %TRUE if @iter is still valid, %FALSE if not.
+ * Returns: %TRUE if @iter is still valid, %FALSE if not.
**/
gboolean
gtk_tree_store_remove (GtkTreeStore *tree_store,
@@ -1777,7 +1777,7 @@ gtk_tree_store_append (GtkTreeStore *tree_store,
* Returns %TRUE if @iter is an ancestor of @descendant. That is, @iter is the
* parent (or grandparent or great-grandparent) of @descendant.
*
- * Return value: %TRUE, if @iter is an ancestor of @descendant
+ * Returns: %TRUE, if @iter is an ancestor of @descendant
**/
gboolean
gtk_tree_store_is_ancestor (GtkTreeStore *tree_store,
@@ -1801,7 +1801,7 @@ gtk_tree_store_is_ancestor (GtkTreeStore *tree_store,
* Returns the depth of @iter. This will be 0 for anything on the root level, 1
* for anything down a level, etc.
*
- * Return value: The depth of @iter
+ * Returns: The depth of @iter
**/
gint
gtk_tree_store_iter_depth (GtkTreeStore *tree_store,
@@ -1914,7 +1914,7 @@ gtk_tree_store_iter_is_valid_helper (GtkTreeIter *iter,
*
* Checks if the given iter is a valid iter for this #GtkTreeStore.
*
- * Return value: %TRUE if the iter is valid, %FALSE if the iter is invalid.
+ * Returns: %TRUE if the iter is valid, %FALSE if the iter is invalid.
*
* Since: 2.2
**/