summaryrefslogtreecommitdiff
path: root/sd/inc/undoanim.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/inc/undoanim.hxx')
-rw-r--r--sd/inc/undoanim.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sd/inc/undoanim.hxx b/sd/inc/undoanim.hxx
index 1445d81780fd..d08f64071965 100644
--- a/sd/inc/undoanim.hxx
+++ b/sd/inc/undoanim.hxx
@@ -40,10 +40,10 @@ public:
UndoAnimation( SdDrawDocument* pDoc, SdPage* pThePage );
virtual ~UndoAnimation();
- virtual void Undo();
- virtual void Redo();
+ virtual void Undo() SAL_OVERRIDE;
+ virtual void Redo() SAL_OVERRIDE;
- virtual OUString GetComment() const;
+ virtual OUString GetComment() const SAL_OVERRIDE;
private:
boost::scoped_ptr<UndoAnimationImpl> mpImpl;
@@ -56,10 +56,10 @@ public:
UndoAnimationPath( SdDrawDocument* pDoc, SdPage* pThePage, const com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode );
virtual ~UndoAnimationPath();
- virtual void Undo();
- virtual void Redo();
+ virtual void Undo() SAL_OVERRIDE;
+ virtual void Redo() SAL_OVERRIDE;
- virtual OUString GetComment() const;
+ virtual OUString GetComment() const SAL_OVERRIDE;
private:
boost::scoped_ptr<UndoAnimationPathImpl> mpImpl;
@@ -73,10 +73,10 @@ public:
UndoTransition( SdDrawDocument* pDoc, SdPage* pThePage );
virtual ~UndoTransition();
- virtual void Undo();
- virtual void Redo();
+ virtual void Undo() SAL_OVERRIDE;
+ virtual void Redo() SAL_OVERRIDE;
- virtual OUString GetComment() const;
+ virtual OUString GetComment() const SAL_OVERRIDE;
private:
boost::scoped_ptr<UndoTransitionImpl> mpImpl;