summaryrefslogtreecommitdiff
path: root/sc/source/ui/Accessibility/AccessibleCellBase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/Accessibility/AccessibleCellBase.cxx')
-rw-r--r--sc/source/ui/Accessibility/AccessibleCellBase.cxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/sc/source/ui/Accessibility/AccessibleCellBase.cxx b/sc/source/ui/Accessibility/AccessibleCellBase.cxx
index 890908afecb8..521732d27b19 100644
--- a/sc/source/ui/Accessibility/AccessibleCellBase.cxx
+++ b/sc/source/ui/Accessibility/AccessibleCellBase.cxx
@@ -75,7 +75,6 @@ ScAccessibleCellBase::~ScAccessibleCellBase()
//===== XAccessibleComponent ============================================
bool SAL_CALL ScAccessibleCellBase::isVisible()
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
@@ -95,7 +94,6 @@ bool SAL_CALL ScAccessibleCellBase::isVisible()
}
sal_Int32 SAL_CALL ScAccessibleCellBase::getForeground()
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
@@ -135,7 +133,6 @@ sal_Int32 SAL_CALL ScAccessibleCellBase::getForeground()
}
sal_Int32 SAL_CALL ScAccessibleCellBase::getBackground()
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
@@ -179,7 +176,6 @@ sal_Int32 SAL_CALL ScAccessibleCellBase::getBackground()
//===== XInterface =====================================================
uno::Any SAL_CALL ScAccessibleCellBase::queryInterface( uno::Type const & rType )
- throw (uno::RuntimeException, std::exception)
{
uno::Any aAny (ScAccessibleCellBaseImpl::queryInterface(rType));
return aAny.hasValue() ? aAny : ScAccessibleContextBase::queryInterface(rType);
@@ -201,7 +197,6 @@ void SAL_CALL ScAccessibleCellBase::release()
sal_Int32
ScAccessibleCellBase::getAccessibleIndexInParent()
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
@@ -210,7 +205,6 @@ sal_Int32
OUString SAL_CALL
ScAccessibleCellBase::createAccessibleDescription()
- throw (uno::RuntimeException, std::exception)
{
OUString sDescription = OUString(ScResId(STR_ACC_CELL_DESCR));
@@ -219,7 +213,6 @@ OUString SAL_CALL
OUString SAL_CALL
ScAccessibleCellBase::createAccessibleName()
- throw (uno::RuntimeException, std::exception)
{
// Document not needed, because only the cell address, but not the tablename is needed
// always us OOO notation
@@ -230,7 +223,6 @@ OUString SAL_CALL
uno::Any SAL_CALL
ScAccessibleCellBase::getCurrentValue()
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
@@ -244,7 +236,6 @@ uno::Any SAL_CALL
sal_Bool SAL_CALL
ScAccessibleCellBase::setCurrentValue( const uno::Any& aNumber )
- throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
@@ -269,14 +260,12 @@ sal_Bool SAL_CALL
uno::Any SAL_CALL
ScAccessibleCellBase::getMaximumValue( )
- throw (uno::RuntimeException, std::exception)
{
return uno::Any(DBL_MAX);
}
uno::Any SAL_CALL
ScAccessibleCellBase::getMinimumValue( )
- throw (uno::RuntimeException, std::exception)
{
return uno::Any(-DBL_MAX);
}
@@ -284,7 +273,6 @@ uno::Any SAL_CALL
//===== XServiceInfo ====================================================
OUString SAL_CALL ScAccessibleCellBase::getImplementationName()
- throw (uno::RuntimeException, std::exception)
{
return OUString("ScAccessibleCellBase");
}
@@ -292,14 +280,12 @@ OUString SAL_CALL ScAccessibleCellBase::getImplementationName()
//===== XTypeProvider ===================================================
uno::Sequence< uno::Type > SAL_CALL ScAccessibleCellBase::getTypes()
- throw (uno::RuntimeException, std::exception)
{
return comphelper::concatSequences(ScAccessibleCellBaseImpl::getTypes(), ScAccessibleContextBase::getTypes());
}
uno::Sequence<sal_Int8> SAL_CALL
ScAccessibleCellBase::getImplementationId()
- throw (uno::RuntimeException, std::exception)
{
return css::uno::Sequence<sal_Int8>();
}
@@ -314,7 +300,6 @@ bool ScAccessibleCellBase::IsEditable(
}
OUString SAL_CALL ScAccessibleCellBase::GetNote()
- throw (css::uno::RuntimeException)
{
SolarMutexGuard aGuard;
IsObjectValid();
@@ -361,7 +346,6 @@ OUString SAL_CALL ScAccessibleCellBase::GetNote()
}
OUString SAL_CALL ScAccessibleCellBase::getShadowAttrs()
- throw (css::uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
@@ -442,7 +426,6 @@ OUString SAL_CALL ScAccessibleCellBase::getShadowAttrs()
}
OUString SAL_CALL ScAccessibleCellBase::getBorderAttrs()
- throw (css::uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
@@ -592,7 +575,6 @@ OUString SAL_CALL ScAccessibleCellBase::getBorderAttrs()
//end of cell attributes
OUString SAL_CALL ScAccessibleCellBase::GetAllDisplayNote()
- throw (css::uno::RuntimeException, std::exception)
{
OUString strNote;
OUString strTrackText;