summaryrefslogtreecommitdiff
path: root/drawinglayer
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-10-21 15:01:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-23 12:09:33 +0000
commite4cb0742c8f1ee68df180f16f9b4f0cbc69e1b9c (patch)
tree6d181563eefcf0d0c3e26d06f17ff72aed54ce16 /drawinglayer
parentef663010434da24ecda35d0f0c26ce1a2b2c0f6c (diff)
loplugin:expandablemethodds in include/connectivity..drawinglayer
Change-Id: Ic58f86422ef8f1e2bb655157850e214fc3a1a9b4 Reviewed-on: https://gerrit.libreoffice.org/30136 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'drawinglayer')
-rw-r--r--drawinglayer/source/attribute/sdrallattribute3d.cxx2
-rw-r--r--drawinglayer/source/primitive2d/mediaprimitive2d.cxx2
-rw-r--r--drawinglayer/source/primitive3d/hatchtextureprimitive3d.cxx2
-rw-r--r--drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx2
-rw-r--r--drawinglayer/source/processor3d/cutfindprocessor3d.cxx2
-rw-r--r--drawinglayer/source/processor3d/shadow3dextractor.cxx2
6 files changed, 6 insertions, 6 deletions
diff --git a/drawinglayer/source/attribute/sdrallattribute3d.cxx b/drawinglayer/source/attribute/sdrallattribute3d.cxx
index 5b3004eb36db..315dfc5cc967 100644
--- a/drawinglayer/source/attribute/sdrallattribute3d.cxx
+++ b/drawinglayer/source/attribute/sdrallattribute3d.cxx
@@ -51,7 +51,7 @@ namespace drawinglayer
{
return(getLine() == rCandidate.getLine()
&& getFill() == rCandidate.getFill()
- && getLineStartEnd() == rCandidate.getLineStartEnd()
+ && maLineStartEnd == rCandidate.maLineStartEnd
&& getShadow() == rCandidate.getShadow()
&& getFillFloatTransGradient() == rCandidate.getFillFloatTransGradient());
}
diff --git a/drawinglayer/source/primitive2d/mediaprimitive2d.cxx b/drawinglayer/source/primitive2d/mediaprimitive2d.cxx
index 8e9beba05218..620ecdfe1a11 100644
--- a/drawinglayer/source/primitive2d/mediaprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/mediaprimitive2d.cxx
@@ -115,7 +115,7 @@ namespace drawinglayer
const MediaPrimitive2D& rCompare = static_cast<const MediaPrimitive2D&>(rPrimitive);
return (getTransform() == rCompare.getTransform()
- && getURL() == rCompare.getURL()
+ && maURL == rCompare.maURL
&& getBackgroundColor() == rCompare.getBackgroundColor()
&& getDiscreteBorder() == rCompare.getDiscreteBorder());
}
diff --git a/drawinglayer/source/primitive3d/hatchtextureprimitive3d.cxx b/drawinglayer/source/primitive3d/hatchtextureprimitive3d.cxx
index 43ae92607d0a..37f4b4041cab 100644
--- a/drawinglayer/source/primitive3d/hatchtextureprimitive3d.cxx
+++ b/drawinglayer/source/primitive3d/hatchtextureprimitive3d.cxx
@@ -308,7 +308,7 @@ namespace drawinglayer
if(getBuffered3DDecomposition().empty())
{
const Primitive3DContainer aNewSequence(impCreate3DDecomposition());
- const_cast< HatchTexturePrimitive3D* >(this)->setBuffered3DDecomposition(aNewSequence);
+ const_cast< HatchTexturePrimitive3D* >(this)->maBuffered3DDecomposition = aNewSequence;
}
return getBuffered3DDecomposition();
diff --git a/drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx b/drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx
index 2db0aa891823..e17f7c03309d 100644
--- a/drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx
+++ b/drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx
@@ -784,7 +784,7 @@ namespace drawinglayer
if(getLast3DDecomposition().empty())
{
const Primitive3DContainer aNewSequence(impCreate3DDecomposition(rViewInformation));
- const_cast< PolygonTubePrimitive3D* >(this)->setLast3DDecomposition(aNewSequence);
+ const_cast< PolygonTubePrimitive3D* >(this)->maLast3DDecomposition = aNewSequence;
}
return getLast3DDecomposition();
diff --git a/drawinglayer/source/processor3d/cutfindprocessor3d.cxx b/drawinglayer/source/processor3d/cutfindprocessor3d.cxx
index 2321437f9ecf..0be1142af357 100644
--- a/drawinglayer/source/processor3d/cutfindprocessor3d.cxx
+++ b/drawinglayer/source/processor3d/cutfindprocessor3d.cxx
@@ -47,7 +47,7 @@ namespace drawinglayer
void CutFindProcessor::processBasePrimitive3D(const primitive3d::BasePrimitive3D& rCandidate)
{
- if(getAnyHit() && maResult.size())
+ if(mbAnyHit && maResult.size())
{
// stop processing as soon as a hit was recognized
return;
diff --git a/drawinglayer/source/processor3d/shadow3dextractor.cxx b/drawinglayer/source/processor3d/shadow3dextractor.cxx
index 867770e9d6c7..25c6f54e917f 100644
--- a/drawinglayer/source/processor3d/shadow3dextractor.cxx
+++ b/drawinglayer/source/processor3d/shadow3dextractor.cxx
@@ -272,7 +272,7 @@ namespace drawinglayer
aCandidate += maLightNormal * fCut;
// transform to view, use 2d coordinates
- aCandidate *= getEyeToView();
+ aCandidate *= maEyeToView;
aRetval.append(basegfx::B2DPoint(aCandidate.getX(), aCandidate.getY()));
}