summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/transitions/zigzagwipe.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/transitions/zigzagwipe.hxx')
-rw-r--r--slideshow/source/engine/transitions/zigzagwipe.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/transitions/zigzagwipe.hxx b/slideshow/source/engine/transitions/zigzagwipe.hxx
index b051d6dc9b73..30cf24a49b46 100644
--- a/slideshow/source/engine/transitions/zigzagwipe.hxx
+++ b/slideshow/source/engine/transitions/zigzagwipe.hxx
@@ -32,7 +32,7 @@ class ZigZagWipe : public ParametricPolyPolygon
{
public:
ZigZagWipe( sal_Int32 nZigs );
- virtual ::basegfx::B2DPolyPolygon operator () ( double t );
+ virtual ::basegfx::B2DPolyPolygon operator () ( double t ) SAL_OVERRIDE;
protected:
const double m_zigEdge;
::basegfx::B2DPolygon m_stdZigZag;
@@ -43,7 +43,7 @@ class BarnZigZagWipe : public ZigZagWipe
{
public:
BarnZigZagWipe( sal_Int32 nZigs ) : ZigZagWipe(nZigs) {}
- virtual ::basegfx::B2DPolyPolygon operator () ( double t );
+ virtual ::basegfx::B2DPolyPolygon operator () ( double t ) SAL_OVERRIDE;
};
}