summaryrefslogtreecommitdiff
path: root/misc/libreoffice4/patches/patch-slideshow_source_engine_activities_activitiesfactory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'misc/libreoffice4/patches/patch-slideshow_source_engine_activities_activitiesfactory.cxx')
-rw-r--r--misc/libreoffice4/patches/patch-slideshow_source_engine_activities_activitiesfactory.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/misc/libreoffice4/patches/patch-slideshow_source_engine_activities_activitiesfactory.cxx b/misc/libreoffice4/patches/patch-slideshow_source_engine_activities_activitiesfactory.cxx
deleted file mode 100644
index 6a401212791..00000000000
--- a/misc/libreoffice4/patches/patch-slideshow_source_engine_activities_activitiesfactory.cxx
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-slideshow_source_engine_activities_activitiesfactory.cxx,v 1.1 2014/01/20 19:27:51 joerg Exp $
-
---- slideshow/source/engine/activities/activitiesfactory.cxx.orig 2013-10-22 17:49:23.000000000 +0000
-+++ slideshow/source/engine/activities/activitiesfactory.cxx
-@@ -557,7 +557,7 @@ public:
- // interpolate between nIndex and nIndex+1 values
- (*mpAnim)(
- getPresentationValue(
-- accumulate( maValues.back(),
-+ accumulate<ValueType>( maValues.back(),
- mbCumulative ? nRepeatCount : 0,
- maInterpolator( maValues[ nIndex ],
- maValues[ nIndex+1 ],
-@@ -577,7 +577,7 @@ public:
- // this is discrete, thus no lerp here.
- (*mpAnim)(
- getPresentationValue(
-- accumulate( maValues.back(),
-+ accumulate<ValueType>( maValues.back(),
- mbCumulative ? nRepeatCount : 0,
- maValues[ nFrame ] ) ) );
- }