summaryrefslogtreecommitdiff
path: root/include/svx/svddrgmt.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 10:40:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 19:21:28 +0100
commitb4cb9bc2b80e316ff615e14c4a5ae2a1ab492f91 (patch)
tree3bde5c701091b9ec1dd02ffbeed5ab621514a247 /include/svx/svddrgmt.hxx
parentdf3e1b7bbd126ed114015070bf68db30fbe9516e (diff)
Revert "loplugin:constfields in svx"
This reverts commit 1a6397030381a45f27ab7a2a02e6e6d0f9987c84. Change-Id: Iaa706bb4ea3144ef57ab359b982400abc589b97e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90454 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/svddrgmt.hxx')
-rw-r--r--include/svx/svddrgmt.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/svddrgmt.hxx b/include/svx/svddrgmt.hxx
index 43a8c7ef1ece..26e88a7dbcd1 100644
--- a/include/svx/svddrgmt.hxx
+++ b/include/svx/svddrgmt.hxx
@@ -51,7 +51,7 @@ public:
class SVXCORE_DLLPUBLIC SdrDragEntryPolyPolygon final : public SdrDragEntry
{
private:
- basegfx::B2DPolyPolygon const maOriginalPolyPolygon;
+ basegfx::B2DPolyPolygon maOriginalPolyPolygon;
public:
SdrDragEntryPolyPolygon(const basegfx::B2DPolyPolygon& rOriginalPolyPolygon);
@@ -66,7 +66,7 @@ class SdrDragEntrySdrObject final : public SdrDragEntry
private:
const SdrObject& maOriginal;
SdrObjectUniquePtr mxClone;
- bool const mbModify;
+ bool mbModify;
public:
SdrDragEntrySdrObject(
@@ -87,7 +87,7 @@ public:
class SdrDragEntryPrimitive2DSequence final : public SdrDragEntry
{
private:
- drawinglayer::primitive2d::Primitive2DContainer const maPrimitive2DSequence;
+ drawinglayer::primitive2d::Primitive2DContainer maPrimitive2DSequence;
public:
SdrDragEntryPrimitive2DSequence(
@@ -101,8 +101,8 @@ public:
class SdrDragEntryPointGlueDrag final : public SdrDragEntry
{
private:
- std::vector< basegfx::B2DPoint > const maPositions;
- bool const mbIsPointDrag;
+ std::vector< basegfx::B2DPoint > maPositions;
+ bool mbIsPointDrag;
public:
SdrDragEntryPointGlueDrag(const std::vector< basegfx::B2DPoint >& rPositions, bool bIsPointDrag);