annotation fixes
* gtk_tree_model_get_column_type: transfer none added to the return value * gtk_tree_model_get_path: value parameter switched from inout to out so that it is annotated with caller-allocates
This commit is contained in:
@ -953,7 +953,7 @@ gtk_tree_model_get_n_columns (GtkTreeModel *tree_model)
|
|||||||
*
|
*
|
||||||
* Returns the type of the column.
|
* Returns the type of the column.
|
||||||
*
|
*
|
||||||
* Return value: The type of the column.
|
* Return value: (transfer none): The type of the column.
|
||||||
**/
|
**/
|
||||||
GType
|
GType
|
||||||
gtk_tree_model_get_column_type (GtkTreeModel *tree_model,
|
gtk_tree_model_get_column_type (GtkTreeModel *tree_model,
|
||||||
@ -1123,7 +1123,7 @@ gtk_tree_model_get_path (GtkTreeModel *tree_model,
|
|||||||
* @tree_model: A #GtkTreeModel.
|
* @tree_model: A #GtkTreeModel.
|
||||||
* @iter: The #GtkTreeIter.
|
* @iter: The #GtkTreeIter.
|
||||||
* @column: The column to lookup the value at.
|
* @column: The column to lookup the value at.
|
||||||
* @value: (inout) (transfer none) An empty #GValue to set.
|
* @value: (out) (transfer none) An empty #GValue to set.
|
||||||
*
|
*
|
||||||
* Initializes and sets @value to that at @column.
|
* Initializes and sets @value to that at @column.
|
||||||
* When done with @value, g_value_unset() needs to be called
|
* When done with @value, g_value_unset() needs to be called
|
||||||
|
Reference in New Issue
Block a user