From f4351535f3bf10b94cccc721ab395e2c7f5010a4 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 17 Aug 2018 16:32:17 +0200 Subject: Consolidate: basegfx::clamp -> o3tl::clamp Change-Id: Iffd8b0a19d4479b6c70dc834c6f64499e87e01b1 Reviewed-on: https://gerrit.libreoffice.org/59265 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- slideshow/source/engine/activities/activitybase.cxx | 4 +++- slideshow/source/engine/animationnodes/animationbasenode.cxx | 3 ++- slideshow/source/engine/shapes/viewshape.cxx | 4 +++- 3 files changed, 8 insertions(+), 3 deletions(-) (limited to 'slideshow') diff --git a/slideshow/source/engine/activities/activitybase.cxx b/slideshow/source/engine/activities/activitybase.cxx index 282604232f69..4ee7c84bcc72 100644 --- a/slideshow/source/engine/activities/activitybase.cxx +++ b/slideshow/source/engine/activities/activitybase.cxx @@ -17,7 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include +#include #include #include @@ -146,7 +148,7 @@ namespace slideshow // ================================ // clamp nT to permissible [0,1] range - nT = ::basegfx::clamp( nT, 0.0, 1.0 ); + nT = o3tl::clamp( nT, 0.0, 1.0 ); // take acceleration/deceleration into account. if the sum // of mnAccelerationFraction and mnDecelerationFraction diff --git a/slideshow/source/engine/animationnodes/animationbasenode.cxx b/slideshow/source/engine/animationnodes/animationbasenode.cxx index 74bd447f7808..f1f320feae89 100644 --- a/slideshow/source/engine/animationnodes/animationbasenode.cxx +++ b/slideshow/source/engine/animationnodes/animationbasenode.cxx @@ -20,6 +20,7 @@ #include #include +#include #include #include #include @@ -449,7 +450,7 @@ AnimationBaseNode::fillCommonParameters() const // Calculate the minimum frame count that depends on the duration and // the minimum frame count. - const sal_Int32 nMinFrameCount (basegfx::clamp( + const sal_Int32 nMinFrameCount (o3tl::clamp( basegfx::fround(nDuration * FrameRate::MinimumFramesPerSecond), 1, 10)); return ActivitiesFactory::CommonParameters( diff --git a/slideshow/source/engine/shapes/viewshape.cxx b/slideshow/source/engine/shapes/viewshape.cxx index 9fb337a2967a..e26865accbe8 100644 --- a/slideshow/source/engine/shapes/viewshape.cxx +++ b/slideshow/source/engine/shapes/viewshape.cxx @@ -17,7 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include +#include #include #include @@ -434,7 +436,7 @@ namespace slideshow if( mbForceUpdate || (nUpdateFlags & UpdateFlags::Alpha) ) { mpSprite->setAlpha( (pAttr && pAttr->isAlphaValid()) ? - ::basegfx::clamp(pAttr->getAlpha(), + o3tl::clamp(pAttr->getAlpha(), 0.0, 1.0) : 1.0 ); -- cgit