summaryrefslogtreecommitdiff
path: root/sd/inc/undoanim.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/inc/undoanim.hxx')
-rw-r--r--sd/inc/undoanim.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/inc/undoanim.hxx b/sd/inc/undoanim.hxx
index 66e2823ab225..d08f64071965 100644
--- a/sd/inc/undoanim.hxx
+++ b/sd/inc/undoanim.hxx
@@ -23,7 +23,7 @@
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/animations/XAnimationNode.hpp>
#include <svx/svdundo.hxx>
-#include <memory>
+#include <boost/scoped_ptr.hpp>
#include "sdundo.hxx"
@@ -46,7 +46,7 @@ public:
virtual OUString GetComment() const SAL_OVERRIDE;
private:
- std::unique_ptr<UndoAnimationImpl> mpImpl;
+ boost::scoped_ptr<UndoAnimationImpl> mpImpl;
};
struct UndoAnimationPathImpl;
@@ -62,7 +62,7 @@ public:
virtual OUString GetComment() const SAL_OVERRIDE;
private:
- std::unique_ptr<UndoAnimationPathImpl> mpImpl;
+ boost::scoped_ptr<UndoAnimationPathImpl> mpImpl;
};
struct UndoTransitionImpl;
@@ -79,7 +79,7 @@ public:
virtual OUString GetComment() const SAL_OVERRIDE;
private:
- std::unique_ptr<UndoTransitionImpl> mpImpl;
+ boost::scoped_ptr<UndoTransitionImpl> mpImpl;
};
}