diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-26 15:39:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-27 08:33:44 +0200 |
commit | 9bccd26037188f20fec244bede3022900d1b96fa (patch) | |
tree | 4751478fa7608813568c5a3c5777d0b87117110c /basegfx/source/polygon/b2dtrapezoid.cxx | |
parent | a1d10eb8d7ee73d901041fdf550d2196a63c9d1d (diff) |
convert CUTFLAG_ constants to enum class
Change-Id: I98dc5488954a4d46f7e0158790a4c3dabebfc1b3
Diffstat (limited to 'basegfx/source/polygon/b2dtrapezoid.cxx')
-rw-r--r-- | basegfx/source/polygon/b2dtrapezoid.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dtrapezoid.cxx b/basegfx/source/polygon/b2dtrapezoid.cxx index a5ac050af4fe..b813e03a9b85 100644 --- a/basegfx/source/polygon/b2dtrapezoid.cxx +++ b/basegfx/source/polygon/b2dtrapezoid.cxx @@ -390,9 +390,9 @@ namespace basegfx if(tools::findCut( aEdgeA.getStart(), aDeltaA, aEdgeB.getStart(), aDeltaB, - CUTFLAG_LINE, + CutFlagValue::LINE, &fCutA, - &fCutB)) + &fCutB) != CutFlagValue::NONE) { // use a simple metric (length criteria) for choosing the numerically // better cut |