summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2019-01-29 09:17:15 +0100
committerTomaž Vajngerl <quikee@gmail.com>2019-01-29 11:01:45 +0100
commit4ac86e33433cbc606157ac911bab026a454345aa (patch)
tree05e50e845b6444786d2b957fe9226613bd9e3a57 /basegfx
parent182f5a0f34fa45d2f74ba22eda41d4e39dca93e5 (diff)
b2dpolygontools: removing debug code, doesn't seem to be useful
Change-Id: Id1aff2ede83e4c35976ebd51fc05aeea80dfae20 Reviewed-on: https://gerrit.libreoffice.org/67049 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/polygon/b2dpolygontools.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/basegfx/source/polygon/b2dpolygontools.cxx b/basegfx/source/polygon/b2dpolygontools.cxx
index 38d9bb192696..f6ac3b279235 100644
--- a/basegfx/source/polygon/b2dpolygontools.cxx
+++ b/basegfx/source/polygon/b2dpolygontools.cxx
@@ -39,9 +39,6 @@
// #i37443#
#define ANGLE_BOUND_START_VALUE (2.25)
#define ANGLE_BOUND_MINIMUM_VALUE (0.1)
-#ifdef DBG_UTIL
-static double fAngleBoundStartValue = ANGLE_BOUND_START_VALUE;
-#endif
#define STEPSPERQUARTER (3)
namespace basegfx
@@ -270,11 +267,7 @@ namespace basegfx
// #i37443# prepare convenient AngleBound if none was given
if(fAngleBound == 0.0)
{
-#ifdef DBG_UTIL
- fAngleBound = fAngleBoundStartValue;
-#else
fAngleBound = ANGLE_BOUND_START_VALUE;
-#endif
}
else if(fTools::less(fAngleBound, ANGLE_BOUND_MINIMUM_VALUE))
{