summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/controller
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2012-10-15 01:06:49 -0300
committerPetr Mladek <pmladek@suse.cz>2012-10-16 13:20:19 +0000
commit6dfbd3324f43ff5b90030462b92ad8c0da3f6dd7 (patch)
treefb964115ea3a3433ce81deacfe6adc77ef6d5d8a /sd/source/ui/slidesorter/controller
parent40a4c469dff783736ba69ec4134e3c23e78b2769 (diff)
Remove some unused methods
Change-Id: Ia9ed975309c6ed677437c6e1c2d6be4a8bd6f1e9 Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/875 Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'sd/source/ui/slidesorter/controller')
-rw-r--r--sd/source/ui/slidesorter/controller/SlsAnimationFunction.cxx21
1 files changed, 0 insertions, 21 deletions
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 (