summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gorse <mgorse@novell.com>2011-05-17 16:21:50 -0500
committerMike Gorse <mgorse@novell.com>2011-05-17 16:21:50 -0500
commit856aa418178632b38a007053799e2f26c115b206 (patch)
tree248cae1a3b3e8bceae4c86d06a14b935cbc434b2
parent05237f4e33de73b6826807aef1bdfa7a0261821b (diff)
downloadat-spi2-core-856aa418178632b38a007053799e2f26c115b206.tar.gz
Annotate atspi_table_get_row_column_extents_at_index out parameters
-rw-r--r--atspi/atspi-table.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/atspi/atspi-table.c b/atspi/atspi-table.c
index ee50ddb7..aa5667b3 100644
--- a/atspi/atspi-table.c
+++ b/atspi/atspi-table.c
@@ -618,15 +618,15 @@ atspi_table_remove_column_selection (AtspiTable *obj,
* @obj: a pointer to the #AtspiTable implementor on which to operate.
* @index: the index of the Table child whose row/column
* extents are requested.
- * @row: back-filled with the first table row associated with
+ * @row: (out): back-filled with the first table row associated with
* the cell with child index \c index.
- * @col: back-filled with the first table column associated
+ * @col: (out): back-filled with the first table column associated
* with the cell with child index \c index.
- * @row_extents: back-filled with the number of table rows
+ * @row_extents: (out): back-filled with the number of table rows
* across which child \c i extends.
- * @col_extents: back-filled with the number of table columns
+ * @col_extents: (out): back-filled with the number of table columns
* across which child \c i extends.
- * @is_selected: a boolean which is back-filled with \c True
+ * @is_selected: (out): a boolean which is back-filled with \c True
* if the child at index \c i corresponds to a selected table cell,
* \c False otherwise.
*