summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basegfx/source/polygon/b2dpolygontools.cxx9
1 files changed, 8 insertions, 1 deletions
diff --git a/basegfx/source/polygon/b2dpolygontools.cxx b/basegfx/source/polygon/b2dpolygontools.cxx
index eb6f210cf910..d5bbcf7505ea 100644
--- a/basegfx/source/polygon/b2dpolygontools.cxx
+++ b/basegfx/source/polygon/b2dpolygontools.cxx
@@ -3416,7 +3416,9 @@ namespace basegfx
{
// prepare loop
bool bControlA(false);
+#if defined SAL_LOG_WARN
bool bControlB(false);
+#endif
// get next point and flag
aNewCoordinatePair = B2DPoint(pPointSequence->X, pPointSequence->Y);
@@ -3437,7 +3439,9 @@ namespace basegfx
if(b < nCount && com::sun::star::drawing::PolygonFlags_CONTROL == ePolygonFlag)
{
aControlB = aNewCoordinatePair;
+#if defined SAL_LOG_WARN
bControlB = true;
+#endif
// get next point and flag
aNewCoordinatePair = B2DPoint(pPointSequence->X, pPointSequence->Y);
@@ -3462,7 +3466,10 @@ namespace basegfx
&& aControlA.equal(aControlB)
&& aControlA.equal(aRetval.getB2DPoint(aRetval.count() - 1)))
{
- bControlA = bControlB = false;
+ bControlA = false;
+#if defined SAL_LOG_WARN
+ bControlB = false;
+#endif
}
if(bControlA)