summaryrefslogtreecommitdiff
path: root/basegfx/source/vector/b2dvector.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/vector/b2dvector.cxx')
-rw-r--r--basegfx/source/vector/b2dvector.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basegfx/source/vector/b2dvector.cxx b/basegfx/source/vector/b2dvector.cxx
index 2a08fab110fd..4c23f51c03c2 100644
--- a/basegfx/source/vector/b2dvector.cxx
+++ b/basegfx/source/vector/b2dvector.cxx
@@ -129,16 +129,16 @@ namespace basegfx
if(fTools::equalZero(fVal))
{
- return ORIENTATION_NEUTRAL;
+ return B2VectorOrientation::Neutral;
}
if(fVal > 0.0)
{
- return ORIENTATION_POSITIVE;
+ return B2VectorOrientation::Positive;
}
else
{
- return ORIENTATION_NEGATIVE;
+ return B2VectorOrientation::Negative;
}
}