summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/effectrewinder.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/effectrewinder.cxx')
-rw-r--r--slideshow/source/engine/effectrewinder.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/effectrewinder.cxx b/slideshow/source/engine/effectrewinder.cxx
index b253027c022e..b5a29fa63217 100644
--- a/slideshow/source/engine/effectrewinder.cxx
+++ b/slideshow/source/engine/effectrewinder.cxx
@@ -49,7 +49,7 @@ public:
virtual ~RewinderEventHandler (void) {}
private:
const Action maAction;
- virtual bool handleEvent (void) { return maAction(); }
+ virtual bool handleEvent (void) SAL_OVERRIDE { return maAction(); }
};
@@ -62,7 +62,7 @@ public:
virtual ~RewinderAnimationEventHandler (void) {}
private:
const Action maAction;
- virtual bool handleAnimationEvent (const AnimationNodeSharedPtr& rpNode)
+ virtual bool handleAnimationEvent (const AnimationNodeSharedPtr& rpNode) SAL_OVERRIDE
{ return maAction(rpNode); }
};