summaryrefslogtreecommitdiff
path: root/accessibility/source/extended/AccessibleGridControlTableBase.cxx
diff options
context:
space:
mode:
authorPhilipp Lohmann [pl] <Philipp.Lohmann@Sun.COM>2010-06-03 14:34:52 +0200
committerPhilipp Lohmann [pl] <Philipp.Lohmann@Sun.COM>2010-06-03 14:34:52 +0200
commit69e70cd1eb142098ebb615d3177cc03fefca2a62 (patch)
tree65e1eb2c69994d9aec633aea3c1f286004adb3e6 /accessibility/source/extended/AccessibleGridControlTableBase.cxx
parenta415e5b7cc6bd14f87c9a5b3b35af3389160ffaa (diff)
vcl112: #i111983# remove unused code (thanks cmc !)
Diffstat (limited to 'accessibility/source/extended/AccessibleGridControlTableBase.cxx')
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlTableBase.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/accessibility/source/extended/AccessibleGridControlTableBase.cxx b/accessibility/source/extended/AccessibleGridControlTableBase.cxx
index dce7bc22f..83039718b 100755
--- a/accessibility/source/extended/AccessibleGridControlTableBase.cxx
+++ b/accessibility/source/extended/AccessibleGridControlTableBase.cxx
@@ -220,19 +220,6 @@ Sequence< sal_Int8 > SAL_CALL AccessibleGridControlTableBase::getImplementationI
// internal helper methods ----------------------------------------------------
-sal_uInt16 AccessibleGridControlTableBase::implToVCLColumnPos( sal_Int32 nColumn ) const
-{
- sal_uInt16 nVCLPos = 0;
- if( (0 <= nColumn) && (nColumn < m_aTable.GetColumnCount()) )
- {
- // regard "handle column"
- if( m_aTable.HasRowHeader() )
- ++nColumn;
- nVCLPos = static_cast< sal_uInt16 >( nColumn );
- }
- return nVCLPos;
-}
-
sal_Int32 AccessibleGridControlTableBase::implGetChildCount() const
{
return m_aTable.GetRowCount()*m_aTable.GetColumnCount();