summaryrefslogtreecommitdiff
path: root/svx/source/table/tablerow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/tablerow.cxx')
-rw-r--r--svx/source/table/tablerow.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/table/tablerow.cxx b/svx/source/table/tablerow.cxx
index 8f96b59767ac..4f2ced4932c8 100644
--- a/svx/source/table/tablerow.cxx
+++ b/svx/source/table/tablerow.cxx
@@ -80,7 +80,7 @@ void TableRow::dispose()
}
-void TableRow::throwIfDisposed() const throw (css::uno::RuntimeException)
+void TableRow::throwIfDisposed() const
{
if( !mxTableModel.is() )
throw DisposedException();
@@ -157,7 +157,7 @@ const TableModelRef& TableRow::getModel() const
// XCellRange
-Reference< XCell > SAL_CALL TableRow::getCellByPosition( sal_Int32 nColumn, sal_Int32 nRow ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
+Reference< XCell > SAL_CALL TableRow::getCellByPosition( sal_Int32 nColumn, sal_Int32 nRow )
{
throwIfDisposed();
if( nRow != 0 )
@@ -167,7 +167,7 @@ Reference< XCell > SAL_CALL TableRow::getCellByPosition( sal_Int32 nColumn, sal_
}
-Reference< XCellRange > SAL_CALL TableRow::getCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
+Reference< XCellRange > SAL_CALL TableRow::getCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom )
{
throwIfDisposed();
if( (nLeft >= 0 ) && (nTop == 0) && (nRight >= nLeft) && (nBottom == 0) )
@@ -178,7 +178,7 @@ Reference< XCellRange > SAL_CALL TableRow::getCellRangeByPosition( sal_Int32 nLe
}
-Reference< XCellRange > SAL_CALL TableRow::getCellRangeByName( const OUString& /*aRange*/ ) throw (RuntimeException, std::exception)
+Reference< XCellRange > SAL_CALL TableRow::getCellRangeByName( const OUString& /*aRange*/ )
{
throwIfDisposed();
return Reference< XCellRange >();
@@ -188,13 +188,13 @@ Reference< XCellRange > SAL_CALL TableRow::getCellRangeByName( const OUString& /
// XNamed
-OUString SAL_CALL TableRow::getName() throw (RuntimeException, std::exception)
+OUString SAL_CALL TableRow::getName()
{
return maName;
}
-void SAL_CALL TableRow::setName( const OUString& aName ) throw (RuntimeException, std::exception)
+void SAL_CALL TableRow::setName( const OUString& aName )
{
maName = aName;
}
@@ -203,7 +203,7 @@ void SAL_CALL TableRow::setName( const OUString& aName ) throw (RuntimeException
// XFastPropertySet
-void SAL_CALL TableRow::setFastPropertyValue( sal_Int32 nHandle, const Any& aValue ) throw (UnknownPropertyException, PropertyVetoException, IllegalArgumentException, css::lang::WrappedTargetException, RuntimeException, std::exception)
+void SAL_CALL TableRow::setFastPropertyValue( sal_Int32 nHandle, const Any& aValue )
{
bool bOk = false;
bool bChange = false;
@@ -295,7 +295,7 @@ void SAL_CALL TableRow::setFastPropertyValue( sal_Int32 nHandle, const Any& aVal
}
-Any SAL_CALL TableRow::getFastPropertyValue( sal_Int32 nHandle ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
+Any SAL_CALL TableRow::getFastPropertyValue( sal_Int32 nHandle )
{
switch( nHandle )
{