summaryrefslogtreecommitdiff
path: root/include/svtools/accessibleruler.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svtools/accessibleruler.hxx')
-rw-r--r--include/svtools/accessibleruler.hxx52
1 files changed, 26 insertions, 26 deletions
diff --git a/include/svtools/accessibleruler.hxx b/include/svtools/accessibleruler.hxx
index c79246621fd5..35d8090e1729 100644
--- a/include/svtools/accessibleruler.hxx
+++ b/include/svtools/accessibleruler.hxx
@@ -70,27 +70,27 @@ public:
//===== XAccessible =====================================================
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext> SAL_CALL
- getAccessibleContext( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getAccessibleContext( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
//===== XAccessibleComponent ============================================
virtual sal_Bool SAL_CALL
- containsPoint( const ::com::sun::star::awt::Point& rPoint ) throw( ::com::sun::star::uno::RuntimeException );
+ containsPoint( const ::com::sun::star::awt::Point& rPoint ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL
- getAccessibleAtPoint( const ::com::sun::star::awt::Point& rPoint ) throw( ::com::sun::star::uno::RuntimeException );
+ getAccessibleAtPoint( const ::com::sun::star::awt::Point& rPoint ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::awt::Rectangle SAL_CALL
- getBounds() throw( ::com::sun::star::uno::RuntimeException );
+ getBounds() throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::awt::Point SAL_CALL
- getLocation() throw( ::com::sun::star::uno::RuntimeException );
+ getLocation() throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::awt::Point SAL_CALL
- getLocationOnScreen() throw( ::com::sun::star::uno::RuntimeException );
+ getLocationOnScreen() throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::awt::Size SAL_CALL
- getSize() throw( ::com::sun::star::uno::RuntimeException );
+ getSize() throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual sal_Bool SAL_CALL
isShowing() throw( ::com::sun::star::uno::RuntimeException );
@@ -112,72 +112,72 @@ public:
throw( ::com::sun::star::uno::RuntimeException );
virtual void SAL_CALL
- grabFocus() throw( ::com::sun::star::uno::RuntimeException );
+ grabFocus() throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::uno::Any SAL_CALL
getAccessibleKeyBinding() throw( ::com::sun::star::uno::RuntimeException );
virtual sal_Int32 SAL_CALL
- getForeground( ) throw (::com::sun::star::uno::RuntimeException);
+ getForeground( ) throw (::com::sun::star::uno::RuntimeException, std::exception);
virtual sal_Int32 SAL_CALL
- getBackground( ) throw (::com::sun::star::uno::RuntimeException);
+ getBackground( ) throw (::com::sun::star::uno::RuntimeException, std::exception);
//===== XAccessibleContext ==============================================
virtual sal_Int32 SAL_CALL
- getAccessibleChildCount( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getAccessibleChildCount( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> SAL_CALL
getAccessibleChild( sal_Int32 nIndex )
- throw( ::com::sun::star::uno::RuntimeException, ::com::sun::star::lang::IndexOutOfBoundsException );
+ throw( ::com::sun::star::uno::RuntimeException, ::com::sun::star::lang::IndexOutOfBoundsException, std::exception );
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> SAL_CALL
- getAccessibleParent( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getAccessibleParent( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual sal_Int32 SAL_CALL
- getAccessibleIndexInParent( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getAccessibleIndexInParent( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual sal_Int16 SAL_CALL
- getAccessibleRole( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getAccessibleRole( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::rtl::OUString SAL_CALL
- getAccessibleDescription( void ) throw (::com::sun::star::uno::RuntimeException);
+ getAccessibleDescription( void ) throw (::com::sun::star::uno::RuntimeException, std::exception);
virtual ::rtl::OUString SAL_CALL
- getAccessibleName( void ) throw (::com::sun::star::uno::RuntimeException);
+ getAccessibleName( void ) throw (::com::sun::star::uno::RuntimeException, std::exception);
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL
- getAccessibleRelationSet( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getAccessibleRelationSet( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL
- getAccessibleStateSet( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getAccessibleStateSet( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::lang::Locale SAL_CALL
getLocale( void )
throw( ::com::sun::star::uno::RuntimeException,
- ::com::sun::star::accessibility::IllegalAccessibleComponentStateException );
+ ::com::sun::star::accessibility::IllegalAccessibleComponentStateException, std::exception );
//===== XAccessibleEventBroadcaster =====================================
virtual void SAL_CALL
- addAccessibleEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleEventListener >& xListener )throw( com::sun::star::uno::RuntimeException );
+ addAccessibleEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleEventListener >& xListener )throw( com::sun::star::uno::RuntimeException, std::exception );
virtual void SAL_CALL
- removeAccessibleEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleEventListener >& xListener ) throw( com::sun::star::uno::RuntimeException );
+ removeAccessibleEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleEventListener >& xListener ) throw( com::sun::star::uno::RuntimeException, std::exception );
//===== XServiceInfo ====================================================
virtual ::rtl::OUString SAL_CALL
- getImplementationName( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getImplementationName( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual sal_Bool SAL_CALL
- supportsService( const ::rtl::OUString& sServiceName ) throw( ::com::sun::star::uno::RuntimeException );
+ supportsService( const ::rtl::OUString& sServiceName ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString> SAL_CALL
- getSupportedServiceNames( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getSupportedServiceNames( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
//===== XTypeProvider ===================================================
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId( void ) throw( ::com::sun::star::uno::RuntimeException );
+ getImplementationId( void ) throw( ::com::sun::star::uno::RuntimeException, std::exception );
private:
static ::com::sun::star::uno::Sequence< sal_Int8 > getUniqueId( void );