summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-03 12:54:32 +0200
committerNoel Grandin <noel@peralex.com>2015-06-04 08:30:24 +0200
commit1d92933d96d94819fa3a4ae2de9519874f9b92b6 (patch)
tree8b43292fd1950be75ce05c726696310eaf12e747 /tools
parent397a0afd3b3dd597f23bfbc75543eaead8bab5d2 (diff)
convert B2VectorContinuity to scoped enum
Change-Id: Ifa401dd0d2d1bef8c0ae2987d2aee86100b59816
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/poly.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/generic/poly.cxx b/tools/source/generic/poly.cxx
index e8dacc2625d3..e01f72a5cbda 100644
--- a/tools/source/generic/poly.cxx
+++ b/tools/source/generic/poly.cxx
@@ -1872,11 +1872,11 @@ Polygon::Polygon(const basegfx::B2DPolygon& rPolygon)
{
const basegfx::B2VectorContinuity eCont(rPolygon.getContinuityInPoint(a));
- if(basegfx::CONTINUITY_C1 == eCont)
+ if(basegfx::B2VectorContinuity::C1 == eCont)
{
mpImplPolygon->mpFlagAry[nStartPointIndex] = (sal_uInt8)POLY_SMOOTH;
}
- else if(basegfx::CONTINUITY_C2 == eCont)
+ else if(basegfx::B2VectorContinuity::C2 == eCont)
{
mpImplPolygon->mpFlagAry[nStartPointIndex] = (sal_uInt8)POLY_SYMMTR;
}