diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-19 18:49:43 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-19 18:56:05 -0500 |
commit | 469d333aa27c67f7d9b2f3923d62fef8519ff2ba (patch) | |
tree | acacd39d222efb5f22738a36115ed946c43f7797 /gtk/gtktreednd.c | |
parent | a6084e264de0c1471ba93a20dd74f19c92a8afc6 (diff) | |
download | gtk+-469d333aa27c67f7d9b2f3923d62fef8519ff2ba.tar.gz |
docs: use Returns: consistently
Instead of Return value:
Diffstat (limited to 'gtk/gtktreednd.c')
-rw-r--r-- | gtk/gtktreednd.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtktreednd.c b/gtk/gtktreednd.c index 0e1d2efc5c..57b6240855 100644 --- a/gtk/gtktreednd.c +++ b/gtk/gtktreednd.c @@ -108,7 +108,7 @@ gtk_tree_drag_dest_get_type (void) * the source of a DND operation. If the source doesn’t implement * this interface, the row is assumed draggable. * - * Return value: %TRUE if the row can be dragged + * Returns: %TRUE if the row can be dragged **/ gboolean gtk_tree_drag_source_row_draggable (GtkTreeDragSource *drag_source, @@ -139,7 +139,7 @@ gtk_tree_drag_source_row_draggable (GtkTreeDragSource *drag_source, * some model-specific reason. Should robustly handle a @path no * longer found in the model! * - * Return value: %TRUE if the row was successfully deleted + * Returns: %TRUE if the row was successfully deleted **/ gboolean gtk_tree_drag_source_drag_data_delete (GtkTreeDragSource *drag_source, @@ -165,7 +165,7 @@ gtk_tree_drag_source_drag_data_delete (GtkTreeDragSource *drag_source, * the required type of the data. Should robustly handle a @path no * longer found in the model! * - * Return value: %TRUE if data of the required type was provided + * Returns: %TRUE if data of the required type was provided **/ gboolean gtk_tree_drag_source_drag_data_get (GtkTreeDragSource *drag_source, @@ -194,7 +194,7 @@ gtk_tree_drag_source_drag_data_get (GtkTreeDragSource *drag_source, * not created for some model-specific reason. Should robustly handle * a @dest no longer found in the model! * - * Return value: whether a new row was created before position @dest + * Returns: whether a new row was created before position @dest **/ gboolean gtk_tree_drag_dest_drag_data_received (GtkTreeDragDest *drag_dest, @@ -223,7 +223,7 @@ gtk_tree_drag_dest_drag_data_received (GtkTreeDragDest *drag_dest, * exist; the return value will almost certainly be %FALSE if the * parent of @dest_path doesn’t exist, though. * - * Return value: %TRUE if a drop is possible before @dest_path + * Returns: %TRUE if a drop is possible before @dest_path **/ gboolean gtk_tree_drag_dest_row_drop_possible (GtkTreeDragDest *drag_dest, @@ -256,7 +256,7 @@ struct _TreeRowData * Sets selection data of target type %GTK_TREE_MODEL_ROW. Normally used * in a drag_data_get handler. * - * Return value: %TRUE if the #GtkSelectionData had the proper target type to allow us to set a tree row + * Returns: %TRUE if the #GtkSelectionData had the proper target type to allow us to set a tree row **/ gboolean gtk_tree_set_row_drag_data (GtkSelectionData *selection_data, @@ -318,7 +318,7 @@ gtk_tree_set_row_drag_data (GtkSelectionData *selection_data, * in from the current process. The returned path must be freed with * gtk_tree_path_free(). * - * Return value: %TRUE if @selection_data had target type %GTK_TREE_MODEL_ROW and + * Returns: %TRUE if @selection_data had target type %GTK_TREE_MODEL_ROW and * is otherwise valid **/ gboolean |