diff options
Diffstat (limited to 'slideshow/source/engine/effectrewinder.cxx')
-rw-r--r-- | slideshow/source/engine/effectrewinder.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/effectrewinder.cxx b/slideshow/source/engine/effectrewinder.cxx index 00f51464ee0d..5fcf1f5b4bb2 100644 --- a/slideshow/source/engine/effectrewinder.cxx +++ b/slideshow/source/engine/effectrewinder.cxx @@ -49,7 +49,7 @@ public: virtual ~RewinderEventHandler() {} private: const Action maAction; - virtual bool handleEvent() SAL_OVERRIDE { return maAction(); } + virtual bool handleEvent() override { return maAction(); } }; @@ -62,7 +62,7 @@ public: virtual ~RewinderAnimationEventHandler() {} private: const Action maAction; - virtual bool handleAnimationEvent (const AnimationNodeSharedPtr& rpNode) SAL_OVERRIDE + virtual bool handleAnimationEvent (const AnimationNodeSharedPtr& rpNode) override { return maAction(rpNode); } }; |