summaryrefslogtreecommitdiff
path: root/slideshow/source/inc/pairanimation.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/inc/pairanimation.hxx')
-rw-r--r--slideshow/source/inc/pairanimation.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/inc/pairanimation.hxx b/slideshow/source/inc/pairanimation.hxx
index ae28f9b44fcc..f8609a1469b3 100644
--- a/slideshow/source/inc/pairanimation.hxx
+++ b/slideshow/source/inc/pairanimation.hxx
@@ -47,7 +47,7 @@ namespace slideshow
@param rValue
Current animation value.
*/
- virtual bool operator()( const ValueType& rValue ) = 0;
+ virtual bool operator()( const ::basegfx::B2DTuple& rValue ) = 0;
/** Request the underlying value for this animation.
@@ -59,7 +59,7 @@ namespace slideshow
for the underlying value, if the animation has actually
been started (via start() call).
*/
- virtual ValueType getUnderlyingValue() const = 0;
+ virtual ::basegfx::B2DTuple getUnderlyingValue() const = 0;
};
typedef ::std::shared_ptr< PairAnimation > PairAnimationSharedPtr;