summaryrefslogtreecommitdiff
path: root/sd/source/ui/accessibility/AccessiblePageShape.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/accessibility/AccessiblePageShape.cxx')
-rw-r--r--sd/source/ui/accessibility/AccessiblePageShape.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/sd/source/ui/accessibility/AccessiblePageShape.cxx b/sd/source/ui/accessibility/AccessiblePageShape.cxx
index 1ab3529fc997..643bc125925b 100644
--- a/sd/source/ui/accessibility/AccessiblePageShape.cxx
+++ b/sd/source/ui/accessibility/AccessiblePageShape.cxx
@@ -57,7 +57,6 @@ AccessiblePageShape::~AccessiblePageShape()
sal_Int32 SAL_CALL
AccessiblePageShape::getAccessibleChildCount()
- throw (std::exception)
{
return 0;
}
@@ -67,7 +66,6 @@ sal_Int32 SAL_CALL
*/
uno::Reference<XAccessible> SAL_CALL
AccessiblePageShape::getAccessibleChild( sal_Int32 )
- throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
{
throw lang::IndexOutOfBoundsException ("page shape has no children",
static_cast<uno::XWeak*>(this));
@@ -76,7 +74,6 @@ uno::Reference<XAccessible> SAL_CALL
//===== XAccessibleComponent ================================================
awt::Rectangle SAL_CALL AccessiblePageShape::getBounds()
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed ();
@@ -138,7 +135,6 @@ awt::Rectangle SAL_CALL AccessiblePageShape::getBounds()
}
sal_Int32 SAL_CALL AccessiblePageShape::getForeground()
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed ();
sal_Int32 nColor (0x0ffffffL);
@@ -164,7 +160,6 @@ sal_Int32 SAL_CALL AccessiblePageShape::getForeground()
draw page or its master page.
*/
sal_Int32 SAL_CALL AccessiblePageShape::getBackground()
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed ();
sal_Int32 nColor (0x01020ffL);
@@ -213,7 +208,6 @@ sal_Int32 SAL_CALL AccessiblePageShape::getBackground()
OUString SAL_CALL
AccessiblePageShape::getImplementationName()
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed ();
return OUString("AccessiblePageShape");
@@ -221,7 +215,6 @@ OUString SAL_CALL
css::uno::Sequence< OUString> SAL_CALL
AccessiblePageShape::getSupportedServiceNames()
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed ();
return AccessibleShape::getSupportedServiceNames();
@@ -231,7 +224,6 @@ css::uno::Sequence< OUString> SAL_CALL
void SAL_CALL
AccessiblePageShape::disposing (const css::lang::EventObject& aEvent)
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed ();
AccessibleShape::disposing (aEvent);
@@ -240,7 +232,6 @@ void SAL_CALL
//===== XComponent ==========================================================
void AccessiblePageShape::dispose()
- throw (css::uno::RuntimeException, std::exception)
{
// Unregister listeners.
Reference<lang::XComponent> xComponent (mxShape, uno::UNO_QUERY);
@@ -258,14 +249,12 @@ void AccessiblePageShape::dispose()
OUString
AccessiblePageShape::CreateAccessibleBaseName()
- throw (css::uno::RuntimeException)
{
return OUString ("PageShape");
}
OUString
AccessiblePageShape::CreateAccessibleName()
- throw (css::uno::RuntimeException)
{
Reference<beans::XPropertySet> xPageProperties (mxPage, UNO_QUERY);
@@ -287,7 +276,6 @@ OUString
OUString
AccessiblePageShape::CreateAccessibleDescription()
- throw (css::uno::RuntimeException)
{
return OUString ("Page Shape");
}