summaryrefslogtreecommitdiff
path: root/svx/source/table/accessibletableshape.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/accessibletableshape.cxx')
-rw-r--r--svx/source/table/accessibletableshape.cxx36
1 files changed, 0 insertions, 36 deletions
diff --git a/svx/source/table/accessibletableshape.cxx b/svx/source/table/accessibletableshape.cxx
index 1c7676598885..71cbe1022151 100644
--- a/svx/source/table/accessibletableshape.cxx
+++ b/svx/source/table/accessibletableshape.cxx
@@ -89,7 +89,6 @@ public:
};
-
AccessibleTableShapeImpl::AccessibleTableShapeImpl( AccessibleShapeTreeInfo& rShapeTreeInfo )
: mrShapeTreeInfo( rShapeTreeInfo )
, mRowCount(0)
@@ -98,7 +97,6 @@ AccessibleTableShapeImpl::AccessibleTableShapeImpl( AccessibleShapeTreeInfo& rSh
}
-
void AccessibleTableShapeImpl::init( const Reference< XAccessible>& xAccessible, const Reference< XTable >& xTable )
{
mxAccessible = xAccessible;
@@ -119,7 +117,6 @@ void AccessibleTableShapeImpl::init( const Reference< XAccessible>& xAccessible,
}
-
void AccessibleTableShapeImpl::dispose()
{
if( mxTable.is() )
@@ -202,7 +199,6 @@ Reference< XAccessible > AccessibleTableShapeImpl::getAccessibleChild(sal_Int32
}
-
void AccessibleTableShapeImpl::getColumnAndRow( sal_Int32 nChildIndex, sal_Int32& rnColumn, sal_Int32& rnRow ) throw (IndexOutOfBoundsException )
{
rnRow = 0;
@@ -332,13 +328,11 @@ AccessibleTableShape::AccessibleTableShape( const AccessibleShapeInfo& rShapeInf
}
-
AccessibleTableShape::~AccessibleTableShape()
{
}
-
void AccessibleTableShape::Init()
{
try
@@ -357,7 +351,6 @@ void AccessibleTableShape::Init()
}
-
SvxTableController* AccessibleTableShape::getTableController()
{
SdrView* pView = maShapeTreeInfo.GetSdrView ();
@@ -385,14 +378,12 @@ Any SAL_CALL AccessibleTableShape::queryInterface( const Type& aType ) throw (Ru
}
-
void SAL_CALL AccessibleTableShape::acquire( ) throw ()
{
AccessibleTableShape_Base::acquire();
}
-
void SAL_CALL AccessibleTableShape::release( ) throw ()
{
AccessibleTableShape_Base::release();
@@ -414,14 +405,12 @@ OUString SAL_CALL AccessibleTableShape::getImplementationName() throw (RuntimeEx
}
-
OUString AccessibleTableShape::CreateAccessibleBaseName() throw (RuntimeException)
{
return OUString("TableShape");
}
-
sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleChildCount( ) throw(RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -444,14 +433,12 @@ Reference< XAccessibleRelationSet > SAL_CALL AccessibleTableShape::getAccessible
}
-
sal_Int16 SAL_CALL AccessibleTableShape::getAccessibleRole() throw (RuntimeException, std::exception)
{
return AccessibleRole::TABLE;
}
-
void SAL_CALL AccessibleTableShape::disposing()
{
mxImpl->dispose();
@@ -471,7 +458,6 @@ sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleRowCount() throw (RuntimeE
}
-
sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleColumnCount( ) throw (RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -479,7 +465,6 @@ sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleColumnCount( ) throw (Run
}
-
OUString SAL_CALL AccessibleTableShape::getAccessibleRowDescription( sal_Int32 nRow ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
checkCellPosition( 0, nRow );
@@ -487,7 +472,6 @@ OUString SAL_CALL AccessibleTableShape::getAccessibleRowDescription( sal_Int32 n
}
-
OUString SAL_CALL AccessibleTableShape::getAccessibleColumnDescription( sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -496,7 +480,6 @@ OUString SAL_CALL AccessibleTableShape::getAccessibleColumnDescription( sal_Int3
}
-
sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleRowExtentAt( sal_Int32 nRow, sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -511,7 +494,6 @@ sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleRowExtentAt( sal_Int32 nRo
}
-
sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleColumnExtentAt( sal_Int32 nRow, sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -526,7 +508,6 @@ sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleColumnExtentAt( sal_Int32
}
-
Reference< XAccessibleTable > SAL_CALL AccessibleTableShape::getAccessibleRowHeaders( ) throw (RuntimeException, std::exception)
{
Reference< XAccessibleTable > xRet;
@@ -543,7 +524,6 @@ Reference< XAccessibleTable > SAL_CALL AccessibleTableShape::getAccessibleRowHea
}
-
Reference< XAccessibleTable > SAL_CALL AccessibleTableShape::getAccessibleColumnHeaders( ) throw (RuntimeException, std::exception)
{
Reference< XAccessibleTable > xRet;
@@ -560,7 +540,6 @@ Reference< XAccessibleTable > SAL_CALL AccessibleTableShape::getAccessibleColumn
}
-
Sequence< sal_Int32 > SAL_CALL AccessibleTableShape::getSelectedAccessibleRows( ) throw (RuntimeException, std::exception)
{
sal_Int32 nRow = getAccessibleRowCount();
@@ -597,7 +576,6 @@ Sequence< sal_Int32 > SAL_CALL AccessibleTableShape::getSelectedAccessibleRows(
}
-
Sequence< sal_Int32 > SAL_CALL AccessibleTableShape::getSelectedAccessibleColumns( ) throw (RuntimeException, std::exception)
{
sal_Int32 nColumn = getAccessibleColumnCount();
@@ -634,7 +612,6 @@ Sequence< sal_Int32 > SAL_CALL AccessibleTableShape::getSelectedAccessibleColumn
}
-
sal_Bool SAL_CALL AccessibleTableShape::isAccessibleRowSelected( sal_Int32 nRow ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -648,7 +625,6 @@ sal_Bool SAL_CALL AccessibleTableShape::isAccessibleRowSelected( sal_Int32 nRow
}
-
sal_Bool SAL_CALL AccessibleTableShape::isAccessibleColumnSelected( sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -662,7 +638,6 @@ sal_Bool SAL_CALL AccessibleTableShape::isAccessibleColumnSelected( sal_Int32 nC
}
-
Reference< XAccessible > SAL_CALL AccessibleTableShape::getAccessibleCellAt( sal_Int32 nRow, sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -676,7 +651,6 @@ Reference< XAccessible > SAL_CALL AccessibleTableShape::getAccessibleCellAt( sal
}
-
Reference< XAccessible > SAL_CALL AccessibleTableShape::getAccessibleCaption( ) throw (RuntimeException, std::exception)
{
Reference< XAccessible > xRet;
@@ -684,7 +658,6 @@ Reference< XAccessible > SAL_CALL AccessibleTableShape::getAccessibleCaption( )
}
-
Reference< XAccessible > SAL_CALL AccessibleTableShape::getAccessibleSummary( ) throw (RuntimeException, std::exception)
{
Reference< XAccessible > xRet;
@@ -692,7 +665,6 @@ Reference< XAccessible > SAL_CALL AccessibleTableShape::getAccessibleSummary( )
}
-
sal_Bool SAL_CALL AccessibleTableShape::isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -711,7 +683,6 @@ sal_Bool SAL_CALL AccessibleTableShape::isAccessibleSelected( sal_Int32 nRow, sa
}
-
sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleIndex( sal_Int32 nRow, sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -720,7 +691,6 @@ sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleIndex( sal_Int32 nRow, sal
}
-
sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleRow( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -730,7 +700,6 @@ sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleRow( sal_Int32 nChildIndex
}
-
sal_Int32 SAL_CALL AccessibleTableShape::getAccessibleColumn( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -768,7 +737,6 @@ void SAL_CALL AccessibleTableShape::selectAccessibleChild( sal_Int32 nChildIndex
}
-
sal_Bool SAL_CALL AccessibleTableShape::isAccessibleChildSelected( sal_Int32 nChildIndex ) throw ( IndexOutOfBoundsException, RuntimeException, std::exception )
{
SolarMutexGuard aSolarGuard;
@@ -779,7 +747,6 @@ sal_Bool SAL_CALL AccessibleTableShape::isAccessibleChildSelected( sal_Int32 nCh
}
-
void SAL_CALL AccessibleTableShape::clearAccessibleSelection() throw ( RuntimeException, std::exception )
{
SolarMutexGuard aSolarGuard;
@@ -801,7 +768,6 @@ void SAL_CALL AccessibleTableShape::selectAllAccessibleChildren() throw ( Runtim
}
-
sal_Int32 SAL_CALL AccessibleTableShape::getSelectedAccessibleChildCount() throw ( RuntimeException, std::exception )
{
SolarMutexGuard aSolarGuard;
@@ -821,7 +787,6 @@ sal_Int32 SAL_CALL AccessibleTableShape::getSelectedAccessibleChildCount() throw
}
-
Reference< XAccessible > SAL_CALL AccessibleTableShape::getSelectedAccessibleChild( sal_Int32 nSelectedChildIndex ) throw ( IndexOutOfBoundsException, RuntimeException, std::exception)
{
SolarMutexGuard aSolarGuard;
@@ -843,7 +808,6 @@ Reference< XAccessible > SAL_CALL AccessibleTableShape::getSelectedAccessibleChi
}
-
void SAL_CALL AccessibleTableShape::deselectAccessibleChild( sal_Int32 nChildIndex ) throw ( IndexOutOfBoundsException, RuntimeException, std::exception )
{
SolarMutexGuard aSolarGuard;