summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/ximp3dobject.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-27 09:22:13 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-28 09:31:16 +0000
commit43b4903db3e925c652e25c34362490f8adc9c5ec (patch)
treeaf12777b72d42280467e8cc19b914b2c7f4f3816 /xmloff/source/draw/ximp3dobject.cxx
parent7d6308dad9f4a079d57719a6e3a9c4cebb47d051 (diff)
teach stylepolice plugin about ref-counted-pointer naming
Change-Id: I6e91d22fc1826038c05ddb6fc065563c6a250752 Reviewed-on: https://gerrit.libreoffice.org/24459 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff/source/draw/ximp3dobject.cxx')
-rw-r--r--xmloff/source/draw/ximp3dobject.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/draw/ximp3dobject.cxx b/xmloff/source/draw/ximp3dobject.cxx
index e41fffcd5547..96eb4df63123 100644
--- a/xmloff/source/draw/ximp3dobject.cxx
+++ b/xmloff/source/draw/ximp3dobject.cxx
@@ -358,14 +358,14 @@ void SdXML3DPolygonBasedShapeContext::StartElement(const uno::Reference< xml::sa
aPolyPolygon));
// convert to UNO API class PolyPolygonShape3D
- drawing::PolyPolygonShape3D xPolyPolygon3D;
+ drawing::PolyPolygonShape3D aPolyPolygon3D;
basegfx::tools::B3DPolyPolygonToUnoPolyPolygonShape3D(
aB3DPolyPolygon,
- xPolyPolygon3D);
+ aPolyPolygon3D);
// set polygon data
uno::Any aAny;
- aAny <<= xPolyPolygon3D;
+ aAny <<= aPolyPolygon3D;
xPropSet->setPropertyValue("D3DPolyPolygon3D", aAny);
}
else