diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-28 09:58:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-28 13:31:49 +0200 |
commit | 2fbb97367ac93eb11429382f31fa6417eec76f8d (patch) | |
tree | 91b03fca5308c5fbe19bb309192bb75591e1f810 /include/svx/svdundo.hxx | |
parent | d664a01f3be81572526d1136c261d86c12f5af90 (diff) |
loplugin:unusedmethods
Change-Id: I5f9ef043d76c55f2c761fd08a2bc1dae66b675c8
Reviewed-on: https://gerrit.libreoffice.org/61073
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/svdundo.hxx')
-rw-r--r-- | include/svx/svdundo.hxx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/svx/svdundo.hxx b/include/svx/svdundo.hxx index 9e969ebbbb4f..67d02218ef36 100644 --- a/include/svx/svdundo.hxx +++ b/include/svx/svdundo.hxx @@ -187,7 +187,6 @@ class SVX_DLLPUBLIC SdrUndoMoveObj final : public SdrUndoObj Size aDistance; // Distance by which we move public: - SdrUndoMoveObj(SdrObject& rNewObj): SdrUndoObj(rNewObj) {} SdrUndoMoveObj(SdrObject& rNewObj, const Size& rDist): SdrUndoObj(rNewObj),aDistance(rDist) {} virtual ~SdrUndoMoveObj() override; @@ -512,26 +511,6 @@ public: virtual OUString GetComment() const override; }; -/** - * Moving a Layer. - * Create Action before the Move. - */ - -class SdrUndoMoveLayer : public SdrUndoLayer -{ - sal_uInt16 nNewPos; - -public: - SdrUndoMoveLayer(sal_uInt16 nLayerNum, SdrLayerAdmin& rNewLayerAdmin, SdrModel& rNewModel, sal_uInt16 nNewPos1) - : SdrUndoLayer(nLayerNum,rNewLayerAdmin,rNewModel), nNewPos(nNewPos1) {} - - virtual void Undo() override; - virtual void Redo() override; - - virtual OUString GetComment() const override; -}; - - /* * Pages */ |