Kaydet (Commit) 1ad68bd3 authored tarafından Philipp Lohmann [pl]'s avatar Philipp Lohmann [pl]

vcl112: #i111983# remove unused code (thanks cmc !)

üst 5110e6dc
......@@ -173,14 +173,6 @@ public:
protected:
// internal helper methods ------------------------------------------------
/** @attention This method requires locked mutex's and a living object.
@param nColumn
the position of the column in the Accessible world
@return
the position of the column in VCL the Accessible world
*/
sal_uInt16 implToVCLColumnPos( sal_Int32 nColumn ) const;
/** @attention This method requires locked mutex's and a living object.
@return The number of cells of the table. */
sal_Int32 implGetChildCount() const;
......
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment