summaryrefslogtreecommitdiff
path: root/atspi/atspi-table-cell.h
diff options
context:
space:
mode:
authorMike Gorse <mgorse@suse.com>2017-03-13 16:56:34 -0500
committerMike Gorse <mgorse@suse.com>2017-03-13 16:56:34 -0500
commitac5daef64178de2bfc325fe890e35717702ffa3b (patch)
treee46ba3885dd9e696d69d61fe58a7a7683211fbd3 /atspi/atspi-table-cell.h
parent3e4a651d8164b62c9f16fa78527360b4f4e01e35 (diff)
downloadat-spi2-core-ac5daef64178de2bfc325fe890e35717702ffa3b.tar.gz
Table cell API fixes
We had a non-working get_column_index function and no get_row_index function. GetPosition is the only function implemented on at-spi2-atk. Removed the non-working functions, for consistency, and add a missing prototype for atspi_table_cell_get_position. https://bugzilla.gnome.org/show_bug.cgi?id=779835
Diffstat (limited to 'atspi/atspi-table-cell.h')
-rw-r--r--atspi/atspi-table-cell.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/atspi/atspi-table-cell.h b/atspi/atspi-table-cell.h
index 8174db8a..757ab0d7 100644
--- a/atspi/atspi-table-cell.h
+++ b/atspi/atspi-table-cell.h
@@ -58,7 +58,10 @@ gint atspi_table_cell_get_row_span (AtspiTableCell *obj, GError **error);
GPtrArray *atspi_table_cell_get_row_header_cells (AtspiTableCell *obj,
GError **error);
-gint atspi_table_cell_get_row_index (AtspiTableCell *obj, GError **error);
+gint atspi_table_cell_get_position (AtspiTableCell *obj,
+ gint *row,
+ gint *column,
+ GError **error);
void atspi_table_cell_get_row_column_span (AtspiTableCell *obj,
gint *row,