summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-06 10:16:38 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-06 10:28:47 +0100
commit819149fb1f71fc13ffdc288736ce65bb3c6c75d8 (patch)
tree55e663505dce8b7a36ec5aab1f8d6cc956522cf5 /basegfx
parent00055d49f35bbabd46d00fefd395b46872ed45aa (diff)
loplugin:collapseif in accessibility..cui
Change-Id: I1437b493f3289b4ac97d061bd71973580571e792 Reviewed-on: https://gerrit.libreoffice.org/62933 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/polygon/b2dpolygon.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx
index 3638424a52e4..54d2844c3821 100644
--- a/basegfx/source/polygon/b2dpolygon.cxx
+++ b/basegfx/source/polygon/b2dpolygon.cxx
@@ -1029,14 +1029,11 @@ public:
{
bool bRemove(maPoints.getCoordinate(nIndex) == maPoints.getCoordinate(nIndex + 1));
- if(bRemove)
+ if(bRemove && mpControlVector)
{
- if(mpControlVector)
+ if(!mpControlVector->getNextVector(nIndex).equalZero() || !mpControlVector->getPrevVector(nIndex + 1).equalZero())
{
- if(!mpControlVector->getNextVector(nIndex).equalZero() || !mpControlVector->getPrevVector(nIndex + 1).equalZero())
- {
- bRemove = false;
- }
+ bRemove = false;
}
}