summaryrefslogtreecommitdiff
path: root/include/editeng/AccessibleComponentBase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/editeng/AccessibleComponentBase.hxx')
-rw-r--r--include/editeng/AccessibleComponentBase.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/editeng/AccessibleComponentBase.hxx b/include/editeng/AccessibleComponentBase.hxx
index 9e760d599c1a..f14817f6702e 100644
--- a/include/editeng/AccessibleComponentBase.hxx
+++ b/include/editeng/AccessibleComponentBase.hxx
@@ -55,7 +55,7 @@ public:
*/
virtual sal_Bool SAL_CALL containsPoint (
const ::com::sun::star::awt::Point& aPoint)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
/** The default implementation returns an empty reference.
*/
@@ -63,30 +63,30 @@ public:
::com::sun::star::accessibility::XAccessible > SAL_CALL
getAccessibleAtPoint (
const ::com::sun::star::awt::Point& aPoint)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
/** The default implementation returns an empty rectangle.
*/
virtual ::com::sun::star::awt::Rectangle SAL_CALL getBounds (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
/** The default implementation uses the result of
<member>getBounds</member> to determine the location.
*/
virtual ::com::sun::star::awt::Point SAL_CALL getLocation (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
/** The default implementation returns an empty position, i.e. the
* result of the default constructor of com::sun::star::awt::Point.
*/
virtual ::com::sun::star::awt::Point SAL_CALL getLocationOnScreen (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
/** The default implementation uses the result of
<member>getBounds</member> to determine the size.
*/
virtual ::com::sun::star::awt::Size SAL_CALL getSize (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
/** The default implementation ignores this call.
*/
@@ -104,33 +104,33 @@ public:
/** The default implementation does nothing.
*/
virtual void SAL_CALL grabFocus (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
/** Returns black as the default foreground color.
*/
virtual sal_Int32 SAL_CALL getForeground (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
/** Returns white as the default background color.
*/
virtual sal_Int32 SAL_CALL getBackground (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
//===== XAccessibleExtendedComponent ====================================
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL
getFont (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getTitledBorderText (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getToolTipText (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
//===== XTypeProvider ===================================================
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> SAL_CALL
getTypes (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
};