diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 10:40:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 19:21:28 +0100 |
commit | b4cb9bc2b80e316ff615e14c4a5ae2a1ab492f91 (patch) | |
tree | 3bde5c701091b9ec1dd02ffbeed5ab621514a247 /svx/source/customshapes | |
parent | df3e1b7bbd126ed114015070bf68db30fbe9516e (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 'svx/source/customshapes')
4 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShape3d.hxx b/svx/source/customshapes/EnhancedCustomShape3d.hxx index c666c4353821..233b99441362 100644 --- a/svx/source/customshapes/EnhancedCustomShape3d.hxx +++ b/svx/source/customshapes/EnhancedCustomShape3d.hxx @@ -33,7 +33,7 @@ class EnhancedCustomShape3d final { class Transformation2D { - Point const aCenter; + Point aCenter; css::drawing::ProjectionMode eProjectionMode; // parallel projection @@ -41,7 +41,7 @@ class EnhancedCustomShape3d final double fSkew; // in percent // perspective projection - basegfx::B3DPoint fViewPoint; + basegfx::B3DPoint fViewPoint; double fOriginX; double fOriginY; diff --git a/svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx b/svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx index cecc478ae66e..2ef6b040e6ce 100644 --- a/svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx +++ b/svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx @@ -94,7 +94,7 @@ namespace class ConstantValueExpression : public ExpressionNode { - double const maValue; + double maValue; public: @@ -1099,7 +1099,7 @@ public: } private: - ParserContextSharedPtr const mpParserContext; // might get modified during parsing + ParserContextSharedPtr mpParserContext; // might get modified during parsing }; const ParserContextSharedPtr& getParserContext() diff --git a/svx/source/customshapes/EnhancedCustomShapeHandle.hxx b/svx/source/customshapes/EnhancedCustomShapeHandle.hxx index 831d47ab43f8..0fa64bbe4bcd 100644 --- a/svx/source/customshapes/EnhancedCustomShapeHandle.hxx +++ b/svx/source/customshapes/EnhancedCustomShapeHandle.hxx @@ -32,7 +32,7 @@ class EnhancedCustomShapeHandle : public cppu::WeakImplHelper css::lang::XInitialization > { - sal_uInt32 const mnIndex; + sal_uInt32 mnIndex; css::uno::Reference< css::drawing::XShape > mxCustomShape; public: diff --git a/svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx b/svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx index 4b257d9ffb7e..d97a73a7c52e 100644 --- a/svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx +++ b/svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx @@ -36,7 +36,7 @@ namespace { struct NameTypeTable { const char* pS; - MSO_SPT const pE; + MSO_SPT pE; }; } |