summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/activities/interpolation.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/activities/interpolation.hxx')
-rw-r--r--slideshow/source/engine/activities/interpolation.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/activities/interpolation.hxx b/slideshow/source/engine/activities/interpolation.hxx
index 2418f59c6d10..6da629695eed 100644
--- a/slideshow/source/engine/activities/interpolation.hxx
+++ b/slideshow/source/engine/activities/interpolation.hxx
@@ -20,11 +20,11 @@
#ifndef INCLUDED_SLIDESHOW_SOURCE_ENGINE_ACTIVITIES_INTERPOLATION_HXX
#define INCLUDED_SLIDESHOW_SOURCE_ENGINE_ACTIVITIES_INTERPOLATION_HXX
-#include <basegfx/tools/lerp.hxx>
+#include <basegfx/utils/lerp.hxx>
namespace basegfx
{
- namespace tools
+ namespace utils
{
// Interpolator specializations
// ============================
@@ -81,7 +81,7 @@ namespace slideshow
const ValueType& rTo,
double t ) const
{
- return basegfx::tools::lerp( rFrom, rTo, t );
+ return basegfx::utils::lerp( rFrom, rTo, t );
}
};