Skip to content
Merged
Show file tree
Hide file tree
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 @@ -2072,6 +2072,7 @@ static long atkTable_get_row_extent_at (long atkObject, long row, long column) {
*
* @return a pointer to the AtkObject representing the caption, or 0
*/
@SuppressWarnings("deprecation")
static long atkTable_get_caption (long atkObject) {
AccessibleObject object = getAccessibleObject (atkObject);
if (object != null) {
Expand Down Expand Up @@ -2108,6 +2109,7 @@ static long atkTable_get_caption (long atkObject) {
*
* @return a pointer to the AtkObject representing the summary, or 0
*/
@SuppressWarnings("deprecation")
static long atkTable_get_summary (long atkObject) {
AccessibleObject object = getAccessibleObject (atkObject);
if (object != null) {
Expand Down
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