summaryrefslogtreecommitdiff
path: root/sd
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 /sd
parent397a0afd3b3dd597f23bfbc75543eaead8bab5d2 (diff)
convert B2VectorContinuity to scoped enum
Change-Id: Ifa401dd0d2d1bef8c0ae2987d2aee86100b59816
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/animations/motionpathtag.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/animations/motionpathtag.cxx b/sd/source/ui/animations/motionpathtag.cxx
index e15ac0db2701..c6849166b80a 100644
--- a/sd/source/ui/animations/motionpathtag.cxx
+++ b/sd/source/ui/animations/motionpathtag.cxx
@@ -869,7 +869,7 @@ void MotionPathTag::CheckPossibilities()
bool bCurve(false);
bool bSmoothFuz(false);
bool bSegmFuz(false);
- basegfx::B2VectorContinuity eSmooth = basegfx::CONTINUITY_NONE;
+ basegfx::B2VectorContinuity eSmooth = basegfx::B2VectorContinuity::NONE;
mrView.CheckPolyPossibilitiesHelper( mpMark, b1stSmooth, b1stSegm, bCurve, bSmoothFuz, bSegmFuz, eSmooth );
}
@@ -1136,15 +1136,15 @@ void MotionPathTag::SetMarkedPointsSmooth(SdrPathSmoothKind eKind)
if(SDRPATHSMOOTH_ANGULAR == eKind)
{
- eFlags = basegfx::CONTINUITY_NONE;
+ eFlags = basegfx::B2VectorContinuity::NONE;
}
else if(SDRPATHSMOOTH_ASYMMETRIC == eKind)
{
- eFlags = basegfx::CONTINUITY_C1;
+ eFlags = basegfx::B2VectorContinuity::C1;
}
else if(SDRPATHSMOOTH_SYMMETRIC == eKind)
{
- eFlags = basegfx::CONTINUITY_C2;
+ eFlags = basegfx::B2VectorContinuity::C2;
}
else
{