diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-10-31 12:36:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-10-31 18:10:13 +0100 |
commit | 525a4732c74baf0c8638353d32bf4220bbb77623 (patch) | |
tree | 44d25d54ace82270ce78bd5bd21a5046cb8edf4a /svx/source/sdr/properties/measureproperties.cxx | |
parent | 5d0748b0c44649c422980a2b2f5554846c47ac9c (diff) |
rename mxItemSet->moItemSet in DefaultProperties
because it reduces the noise in an upcoming patch
Change-Id: I67d7b719609271f626e38596416eb511fbd40b07
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158714
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/sdr/properties/measureproperties.cxx')
-rw-r--r-- | svx/source/sdr/properties/measureproperties.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/sdr/properties/measureproperties.cxx b/svx/source/sdr/properties/measureproperties.cxx index bd976345ba57..44cdae798899 100644 --- a/svx/source/sdr/properties/measureproperties.cxx +++ b/svx/source/sdr/properties/measureproperties.cxx @@ -111,7 +111,7 @@ namespace sdr::properties //#71958# by default, the show units Bool-Item is set as hard // attribute to sal_True to avoid confusion when copying SdrMeasureObj's // from one application to another - mxItemSet->Put(SdrYesNoItem(SDRATTR_MEASURESHOWUNIT, true)); + moItemSet->Put(SdrYesNoItem(SDRATTR_MEASURESHOWUNIT, true)); basegfx::B2DPolygon aNewPolygon; aNewPolygon.append(basegfx::B2DPoint(100.0, 0.0)); @@ -119,11 +119,11 @@ namespace sdr::properties aNewPolygon.append(basegfx::B2DPoint(0.0, 400.0)); aNewPolygon.setClosed(true); - mxItemSet->Put(XLineStartItem(OUString(), basegfx::B2DPolyPolygon(aNewPolygon))); - mxItemSet->Put(XLineStartWidthItem(200)); - mxItemSet->Put(XLineEndItem(OUString(), basegfx::B2DPolyPolygon(aNewPolygon))); - mxItemSet->Put(XLineEndWidthItem(200)); - mxItemSet->Put(XLineStyleItem(css::drawing::LineStyle_SOLID)); + moItemSet->Put(XLineStartItem(OUString(), basegfx::B2DPolyPolygon(aNewPolygon))); + moItemSet->Put(XLineStartWidthItem(200)); + moItemSet->Put(XLineEndItem(OUString(), basegfx::B2DPolyPolygon(aNewPolygon))); + moItemSet->Put(XLineEndWidthItem(200)); + moItemSet->Put(XLineStyleItem(css::drawing::LineStyle_SOLID)); } } // end of namespace |