summaryrefslogtreecommitdiff
path: root/unoxml/source/events/uievent.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/events/uievent.hxx')
-rw-r--r--unoxml/source/events/uievent.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/unoxml/source/events/uievent.hxx b/unoxml/source/events/uievent.hxx
index 934ff4ce3e38..5111c0eaac77 100644
--- a/unoxml/source/events/uievent.hxx
+++ b/unoxml/source/events/uievent.hxx
@@ -47,29 +47,29 @@ protected:
public:
explicit CUIEvent();
- virtual Reference< XAbstractView > SAL_CALL getView() throw(RuntimeException, std::exception);
- virtual sal_Int32 SAL_CALL getDetail() throw(RuntimeException, std::exception);
+ virtual Reference< XAbstractView > SAL_CALL getView() throw(RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual sal_Int32 SAL_CALL getDetail() throw(RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL initUIEvent(const OUString& typeArg,
sal_Bool canBubbleArg,
sal_Bool cancelableArg,
const Reference< XAbstractView >& viewArg,
- sal_Int32 detailArg) throw(RuntimeException, std::exception);
+ sal_Int32 detailArg) throw(RuntimeException, std::exception) SAL_OVERRIDE;
// delegate to CEvent, since we are inheriting from CEvent and XEvent
- 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 OUString SAL_CALL getType() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Reference< XEventTarget > SAL_CALL getTarget() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Reference< XEventTarget > SAL_CALL getCurrentTarget() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual PhaseType SAL_CALL getEventPhase() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual sal_Bool SAL_CALL getBubbles() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual sal_Bool SAL_CALL getCancelable() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual com::sun::star::util::Time SAL_CALL getTimeStamp() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL stopPropagation() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL preventDefault() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL initEvent(
const OUString& eventTypeArg,
sal_Bool canBubbleArg,
sal_Bool cancelableArg)
- throw (RuntimeException, std::exception);
+ throw (RuntimeException, std::exception) SAL_OVERRIDE;
};
}}
#endif