summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx')
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx b/sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx
index f9c8db38773d..09135d9738b0 100644
--- a/sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx
+++ b/sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx
@@ -27,7 +27,9 @@
#include <vcl/idle.hxx>
#include <sal/types.h>
-#include <memory>
+#include <boost/noncopyable.hpp>
+#include <boost/scoped_ptr.hpp>
+#include <boost/shared_ptr.hpp>
#include <functional>
#include <vector>
@@ -97,11 +99,11 @@ private:
Idle maIdle;
bool mbIsDisposed;
class Animation;
- typedef ::std::vector<std::shared_ptr<Animation> > AnimationList;
+ typedef ::std::vector<boost::shared_ptr<Animation> > AnimationList;
AnimationList maAnimations;
::canvas::tools::ElapsedTime maElapsedTime;
- std::unique_ptr<view::SlideSorterView::DrawLock> mpDrawLock;
+ ::boost::scoped_ptr<view::SlideSorterView::DrawLock> mpDrawLock;
AnimationId mnNextAnimationId;