diff options
Diffstat (limited to 'unoxml/source/events/event.hxx')
-rw-r--r-- | unoxml/source/events/event.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/unoxml/source/events/event.hxx b/unoxml/source/events/event.hxx index bb9391309de4..a148e20c9902 100644 --- a/unoxml/source/events/event.hxx +++ b/unoxml/source/events/event.hxx @@ -59,19 +59,19 @@ public: explicit CEvent(); virtual ~CEvent(); - virtual OUString SAL_CALL getType() throw (RuntimeException); - virtual Reference< XEventTarget > SAL_CALL getTarget() throw (RuntimeException); - virtual Reference< XEventTarget > SAL_CALL getCurrentTarget() throw (RuntimeException); - virtual PhaseType SAL_CALL getEventPhase() throw (RuntimeException); - virtual sal_Bool SAL_CALL getBubbles() throw (RuntimeException); - virtual sal_Bool SAL_CALL getCancelable() throw (RuntimeException); - virtual com::sun::star::util::Time SAL_CALL getTimeStamp() throw (RuntimeException); - virtual void SAL_CALL stopPropagation() throw (RuntimeException); - virtual void SAL_CALL preventDefault() throw (RuntimeException); + virtual OUString SAL_CALL getType() throw (RuntimeException, std::exception); + virtual Reference< XEventTarget > SAL_CALL getTarget() throw (RuntimeException, std::exception); + virtual Reference< XEventTarget > SAL_CALL getCurrentTarget() throw (RuntimeException, std::exception); + virtual PhaseType SAL_CALL getEventPhase() throw (RuntimeException, std::exception); + virtual sal_Bool SAL_CALL getBubbles() throw (RuntimeException, std::exception); + virtual sal_Bool SAL_CALL getCancelable() throw (RuntimeException, std::exception); + virtual com::sun::star::util::Time SAL_CALL getTimeStamp() throw (RuntimeException, std::exception); + virtual void SAL_CALL stopPropagation() throw (RuntimeException, std::exception); + virtual void SAL_CALL preventDefault() throw (RuntimeException, std::exception); virtual void SAL_CALL initEvent( const OUString& eventTypeArg, sal_Bool canBubbleArg, - sal_Bool cancelableArg) throw (RuntimeException); + sal_Bool cancelableArg) throw (RuntimeException, std::exception); }; }} #endif |