diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 09:59:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-14 07:54:02 +0100 |
commit | 2eb0e7594cc875dd0960822d9403b573ac00f739 (patch) | |
tree | 28ae250f91eff446da9dfafee1465be66abba2e5 /svgio | |
parent | f2193de6c39a783b1111f9825a30cf2c2fa78206 (diff) |
Revert "loplugin:constfields in stoc..svgio"
This reverts commit 0ddf3e0a628599d01356cb5262b93faca073ee9f.
Change-Id: I3e476399a465950defc15ac4d6199a638c4a4baf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90452
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/inc/svgcharacternode.hxx | 2 | ||||
-rw-r--r-- | svgio/inc/svgnode.hxx | 2 | ||||
-rw-r--r-- | svgio/inc/svgpolynode.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/svgio/inc/svgcharacternode.hxx b/svgio/inc/svgcharacternode.hxx index 91218dff74fd..20d6eec7b0da 100644 --- a/svgio/inc/svgcharacternode.hxx +++ b/svgio/inc/svgcharacternode.hxx @@ -96,7 +96,7 @@ namespace svgio // advancing rotation index sal_uInt32 mnRotationIndex; - bool const mbLengthAdjust : 1; // true = spacing, false = spacingAndGlyphs + bool mbLengthAdjust : 1; // true = spacing, false = spacingAndGlyphs bool mbAbsoluteX : 1; public: diff --git a/svgio/inc/svgnode.hxx b/svgio/inc/svgnode.hxx index dd9f53cc9d2f..121e7826bd75 100644 --- a/svgio/inc/svgnode.hxx +++ b/svgio/inc/svgnode.hxx @@ -85,7 +85,7 @@ namespace svgio { private: /// basic data, Type, document we belong to and parent (if not root) - SVGToken const maType; + SVGToken maType; SvgDocument& mrDocument; const SvgNode* mpParent; const SvgNode* mpAlternativeParent; diff --git a/svgio/inc/svgpolynode.hxx b/svgio/inc/svgpolynode.hxx index 50ace92e1793..fa59312f61ed 100644 --- a/svgio/inc/svgpolynode.hxx +++ b/svgio/inc/svgpolynode.hxx @@ -39,7 +39,7 @@ namespace svgio std::unique_ptr<basegfx::B2DPolygon> mpPolygon; std::unique_ptr<basegfx::B2DHomMatrix> mpaTransform; - bool const mbIsPolyline : 1; // true = polyline, false = polygon + bool mbIsPolyline : 1; // true = polyline, false = polygon public: SvgPolyNode( |