diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-17 15:41:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-17 17:01:14 +0100 |
commit | 6f495a195b794257e8b1302d384148be43c04cee (patch) | |
tree | c0ef4b8eeed1b1bb2e8da0deffac0a74b2eb5467 /sd/inc/undoanim.hxx | |
parent | 74efa4f0e87e2b5fe7a577fa4673cb947c947c74 (diff) |
boost->std
Change-Id: I1e6a7fd66f90e6acd803c6cd464f1d73252f7bcb
Diffstat (limited to 'sd/inc/undoanim.hxx')
-rw-r--r-- | sd/inc/undoanim.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/inc/undoanim.hxx b/sd/inc/undoanim.hxx index d08f64071965..66e2823ab225 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 <boost/scoped_ptr.hpp> +#include <memory> #include "sdundo.hxx" @@ -46,7 +46,7 @@ public: virtual OUString GetComment() const SAL_OVERRIDE; private: - boost::scoped_ptr<UndoAnimationImpl> mpImpl; + std::unique_ptr<UndoAnimationImpl> mpImpl; }; struct UndoAnimationPathImpl; @@ -62,7 +62,7 @@ public: virtual OUString GetComment() const SAL_OVERRIDE; private: - boost::scoped_ptr<UndoAnimationPathImpl> mpImpl; + std::unique_ptr<UndoAnimationPathImpl> mpImpl; }; struct UndoTransitionImpl; @@ -79,7 +79,7 @@ public: virtual OUString GetComment() const SAL_OVERRIDE; private: - boost::scoped_ptr<UndoTransitionImpl> mpImpl; + std::unique_ptr<UndoTransitionImpl> mpImpl; }; } |