From 6dfbd3324f43ff5b90030462b92ad8c0da3f6dd7 Mon Sep 17 00:00:00 2001 From: Marcos Paulo de Souza Date: Mon, 15 Oct 2012 01:06:49 -0300 Subject: Remove some unused methods Change-Id: Ia9ed975309c6ed677437c6e1c2d6be4a8bd6f1e9 Signed-off-by: Marcos Paulo de Souza Reviewed-on: https://gerrit.libreoffice.org/875 Reviewed-by: Petr Mladek Tested-by: Petr Mladek --- .../slidesorter/controller/SlsAnimationFunction.cxx | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'sd/source/ui/slidesorter/controller') diff --git a/sd/source/ui/slidesorter/controller/SlsAnimationFunction.cxx b/sd/source/ui/slidesorter/controller/SlsAnimationFunction.cxx index c703d64e81fc..eaefe0207b23 100644 --- a/sd/source/ui/slidesorter/controller/SlsAnimationFunction.cxx +++ b/sd/source/ui/slidesorter/controller/SlsAnimationFunction.cxx @@ -36,27 +36,6 @@ namespace sd { namespace slidesorter { namespace controller { - -double AnimationFunction::Linear (const double nTime) -{ - OSL_ASSERT(nTime>=0.0 && nTime<=1.0); - return nTime; -} - - - - -double AnimationFunction::Blend ( - const double nStartValue, - const double nEndValue, - const double nTime) -{ - return nStartValue*(1-nTime) + nEndValue*nTime; -} - - - - //===== AnimationBezierFunction =============================================== AnimationBezierFunction::AnimationBezierFunction ( -- cgit