summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/inc/AccessibleDocumentPagePreview.hxx')
-rw-r--r--sc/source/ui/inc/AccessibleDocumentPagePreview.hxx41
1 files changed, 13 insertions, 28 deletions
diff --git a/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx b/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx
index 3129a2ce34c3..450c51c1ed0e 100644
--- a/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx
+++ b/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx
@@ -58,77 +58,62 @@ public:
virtual css::uno::Reference< css::accessibility::XAccessible >
SAL_CALL getAccessibleAtPoint(
- const css::awt::Point& rPoint )
- throw (css::uno::RuntimeException, std::exception) override;
+ const css::awt::Point& rPoint ) override;
- virtual void SAL_CALL grabFocus( )
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL grabFocus( ) override;
///===== XAccessibleContext ==============================================
/// Return the number of currently visible children.
- virtual sal_Int32 SAL_CALL getAccessibleChildCount()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Int32 SAL_CALL getAccessibleChildCount() override;
/// Return the specified child or NULL if index is invalid.
virtual css::uno::Reference< css::accessibility::XAccessible> SAL_CALL
- getAccessibleChild(sal_Int32 nIndex)
- throw (css::uno::RuntimeException,
- css::lang::IndexOutOfBoundsException,
- std::exception) override;
+ getAccessibleChild(sal_Int32 nIndex) override;
/// Return the set of current states.
virtual css::uno::Reference<
css::accessibility::XAccessibleStateSet> SAL_CALL
- getAccessibleStateSet()
- throw (css::uno::RuntimeException, std::exception) override;
+ getAccessibleStateSet() override;
- virtual OUString SAL_CALL getAccessibleName()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getAccessibleName() override;
///===== XServiceInfo ====================================================
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName()
- throw (css::uno::RuntimeException, std::exception) override;
+ getImplementationName() override;
/** Returns a list of all supported services.
*/
virtual css::uno::Sequence< OUString> SAL_CALL
- getSupportedServiceNames()
- throw (css::uno::RuntimeException, std::exception) override;
+ getSupportedServiceNames() override;
///===== XTypeProvider ===================================================
/** Returns a implementation id.
*/
virtual css::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId()
- throw (css::uno::RuntimeException, std::exception) override;
+ getImplementationId() override;
///===== internal ========================================================
protected:
/// Return this object's description.
virtual OUString SAL_CALL
- createAccessibleDescription()
- throw (css::uno::RuntimeException, std::exception) override;
+ createAccessibleDescription() override;
/// Return the object's current name.
virtual OUString SAL_CALL
- createAccessibleName()
- throw (css::uno::RuntimeException, std::exception) override;
+ createAccessibleName() override;
public: // needed in ScShapeChildren
/// Return the object's current bounding box relative to the desktop.
- virtual Rectangle GetBoundingBoxOnScreen() const
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual Rectangle GetBoundingBoxOnScreen() const override;
protected:
/// Return the object's current bounding box relative to the parent object.
- virtual Rectangle GetBoundingBox() const
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual Rectangle GetBoundingBox() const override;
private:
ScPreviewShell* mpViewShell;