diff options
Diffstat (limited to 'toolkit/source/controls')
-rw-r--r-- | toolkit/source/controls/table/AccessibleGridControlTableCell.cxx | 2 | ||||
-rw-r--r-- | toolkit/source/controls/table/tablecontrol.cxx | 7 |
2 files changed, 1 insertions, 8 deletions
diff --git a/toolkit/source/controls/table/AccessibleGridControlTableCell.cxx b/toolkit/source/controls/table/AccessibleGridControlTableCell.cxx index 2aba147012b4..79b21c0b326a 100644 --- a/toolkit/source/controls/table/AccessibleGridControlTableCell.cxx +++ b/toolkit/source/controls/table/AccessibleGridControlTableCell.cxx @@ -139,7 +139,7 @@ namespace accessibility throw IndexOutOfBoundsException(); return vcl::unohelper::ConvertToAWTRect( - m_aTable.GetFieldCharacterBounds(getRowPos(), getColumnPos(), nIndex)); + m_aTable.GetCharacterBounds(nIndex)); } sal_Int32 SAL_CALL AccessibleGridControlTableCell::getIndexAtPoint( const css::awt::Point& _aPoint ) diff --git a/toolkit/source/controls/table/tablecontrol.cxx b/toolkit/source/controls/table/tablecontrol.cxx index 61062df11739..f9cdbc8ef545 100644 --- a/toolkit/source/controls/table/tablecontrol.cxx +++ b/toolkit/source/controls/table/tablecontrol.cxx @@ -585,13 +585,6 @@ namespace svt::table _rStateSet |= AccessibleStateType::ACTIVE; } - - tools::Rectangle TableControl::GetFieldCharacterBounds(sal_Int32,sal_Int32,sal_Int32 nIndex) - { - return GetCharacterBounds(nIndex); - } - - sal_Int32 TableControl::GetFieldIndexAtPoint(sal_Int32,sal_Int32,const Point& _rPoint) { return GetIndexForPoint(_rPoint); |