diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-03 09:32:33 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-04 08:30:24 +0200 |
commit | 397a0afd3b3dd597f23bfbc75543eaead8bab5d2 (patch) | |
tree | a9eb5993ffd80cc8b88b2f011be10d8167049bd6 /basegfx/source/range/b2drangeclipper.cxx | |
parent | 94d92d00fa756ecb1865e56110ceca920fbaa8ac (diff) |
convert B2VectorOrientation to scoped enum
Change-Id: Id7e444bc896ae5d52e5a0bd1b471679c4945afa4
Diffstat (limited to 'basegfx/source/range/b2drangeclipper.cxx')
-rw-r--r-- | basegfx/source/range/b2drangeclipper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/range/b2drangeclipper.cxx b/basegfx/source/range/b2drangeclipper.cxx index edbb12803d45..a62f44e177e4 100644 --- a/basegfx/source/range/b2drangeclipper.cxx +++ b/basegfx/source/range/b2drangeclipper.cxx @@ -570,7 +570,7 @@ namespace basegfx SweepLineEvent( rCurrRect.getMinX(), rCurrRect, SweepLineEvent::STARTING_EDGE, - (*aCurrOrientation++) == ORIENTATION_POSITIVE ? + (*aCurrOrientation++) == B2VectorOrientation::Positive ? SweepLineEvent::PROCEED_UP : SweepLineEvent::PROCEED_DOWN) ); } @@ -586,7 +586,7 @@ namespace basegfx SweepLineEvent( rCurrRect.getMaxX(), rCurrRect, SweepLineEvent::FINISHING_EDGE, - (*aCurrOrientationR++) == ORIENTATION_POSITIVE ? + (*aCurrOrientationR++) == B2VectorOrientation::Positive ? SweepLineEvent::PROCEED_DOWN : SweepLineEvent::PROCEED_UP ) ); } |