diff options
Diffstat (limited to 'toolkit/source')
-rw-r--r-- | toolkit/source/controls/table/tablecontrol.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/toolkit/source/controls/table/tablecontrol.cxx b/toolkit/source/controls/table/tablecontrol.cxx index 860ed4892d1f..eb67a8f8370a 100644 --- a/toolkit/source/controls/table/tablecontrol.cxx +++ b/toolkit/source/controls/table/tablecontrol.cxx @@ -531,16 +531,6 @@ namespace svt::table return count; } - - bool TableControl::ConvertPointToControlIndex( sal_Int32& _rnIndex, const Point& _rPoint ) - { - sal_Int32 nRow = m_pImpl->getRowAtPoint( _rPoint ); - sal_Int32 nCol = m_pImpl->getColAtPoint( _rPoint ); - _rnIndex = nRow * GetColumnCount() + nCol; - return nRow >= 0; - } - - sal_Int32 TableControl::GetRowCount() const { return GetModel()->getRowCount(); |