Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3847,6 +3847,7 @@ int get_cellAt(int row, int column, long ppCell) {
}

/* IAccessibleTable2::get_caption([out] ppAccessible) */
@SuppressWarnings("deprecation")
int get_caption(long ppAccessible) {
if (control != null && control.isDisposed()) return COM.CO_E_OBJNOTCONNECTED;
AccessibleTableEvent event = new AccessibleTableEvent(this);
Expand Down Expand Up @@ -4035,6 +4036,7 @@ int get_selectedRows(long ppSelectedRows, long pNRows) {
}

/* IAccessibleTable2::get_summary([out] ppAccessible) */
@SuppressWarnings("deprecation")
int get_summary(long ppAccessible) {
if (control != null && control.isDisposed()) return COM.CO_E_OBJNOTCONNECTED;
AccessibleTableEvent event = new AccessibleTableEvent(this);
Expand Down
Loading