summaryrefslogtreecommitdiffstats
path: root/unoxml/source/events/event.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-25 21:31:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-26 18:22:20 +0100
commit5e21a413c788f839a66d9e4c14e745ed18058db8 (patch)
treed4451246461346a425ad6f796e08bf1514cdd942 /unoxml/source/events/event.hxx
parentFixup whitespace changes, remove commented code. (diff)
downloadcore-5e21a413c788f839a66d9e4c14e745ed18058db8.tar.gz
core-5e21a413c788f839a66d9e4c14e745ed18058db8.zip
cppuhelper: retrofit std::exception into overriding exception specs
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
Diffstat (limited to 'unoxml/source/events/event.hxx')
-rw-r--r--unoxml/source/events/event.hxx20
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