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 /drawinglayer | |
parent | a1d10eb8d7ee73d901041fdf550d2196a63c9d1d (diff) |
convert CUTFLAG_ constants to enum class
Change-Id: I98dc5488954a4d46f7e0158790a4c3dabebfc1b3
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/primitive3d/sdrextrudelathetools3d.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drawinglayer/source/primitive3d/sdrextrudelathetools3d.cxx b/drawinglayer/source/primitive3d/sdrextrudelathetools3d.cxx index 9d4813be1194..01e56db4a23c 100644 --- a/drawinglayer/source/primitive3d/sdrextrudelathetools3d.cxx +++ b/drawinglayer/source/primitive3d/sdrextrudelathetools3d.cxx @@ -332,7 +332,7 @@ namespace if(basegfx::tools::findCut( rStart, aVector, - aCurrent, aEdgeVector)) + aCurrent, aEdgeVector) != CutFlagValue::NONE) { return true; } |