summaryrefslogtreecommitdiff
path: root/svx/source/table/cellrange.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/cellrange.cxx')
-rw-r--r--svx/source/table/cellrange.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/table/cellrange.cxx b/svx/source/table/cellrange.cxx
index 1f7dc02416ff..b5e8001c283d 100644
--- a/svx/source/table/cellrange.cxx
+++ b/svx/source/table/cellrange.cxx
@@ -76,13 +76,13 @@ Reference< XTable > CellRange::getTable()
// XCellRange
-Reference< XCell > SAL_CALL CellRange::getCellByPosition( sal_Int32 nColumn, sal_Int32 nRow ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
+Reference< XCell > SAL_CALL CellRange::getCellByPosition( sal_Int32 nColumn, sal_Int32 nRow )
{
return mxTable->getCellByPosition( mnLeft + nColumn, mnTop + nRow );
}
-Reference< XCellRange > SAL_CALL CellRange::getCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
+Reference< XCellRange > SAL_CALL CellRange::getCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom )
{
if( (nLeft >= 0 ) && (nTop >= 0) && (nRight >= nLeft) && (nBottom >= nTop) )
{
@@ -102,7 +102,7 @@ Reference< XCellRange > SAL_CALL CellRange::getCellRangeByPosition( sal_Int32 nL
}
-Reference< XCellRange > SAL_CALL CellRange::getCellRangeByName( const OUString& /*aRange*/ ) throw (RuntimeException, std::exception)
+Reference< XCellRange > SAL_CALL CellRange::getCellRangeByName( const OUString& /*aRange*/ )
{
return Reference< XCellRange >();
}