summaryrefslogtreecommitdiff
path: root/sd/inc/undoanim.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-21 14:45:13 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-24 08:17:03 +0000
commit876e63e6295573e50886e37b3ca31716e0401af1 (patch)
tree7c86bf978039963bd9a91eabaf8eae796fa6966b /sd/inc/undoanim.hxx
parentc4fba6557cd7743d3f7ecc542f9cb2a36d0cd382 (diff)
sd/inc boost::scoped_ptr->std::unique_ptr
Change-Id: I3830c451f685d7603c0271107bd1a0d477be464b Reviewed-on: https://gerrit.libreoffice.org/18749 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/inc/undoanim.hxx')
-rw-r--r--sd/inc/undoanim.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sd/inc/undoanim.hxx b/sd/inc/undoanim.hxx
index be2eea83eef2..66e2823ab225 100644
--- a/sd/inc/undoanim.hxx
+++ b/sd/inc/undoanim.hxx
@@ -24,7 +24,6 @@
#include <com/sun/star/animations/XAnimationNode.hpp>
#include <svx/svdundo.hxx>
#include <memory>
-#include <boost/scoped_ptr.hpp>
#include "sdundo.hxx"
@@ -47,7 +46,7 @@ public:
virtual OUString GetComment() const SAL_OVERRIDE;
private:
- boost::scoped_ptr<UndoAnimationImpl> mpImpl;
+ std::unique_ptr<UndoAnimationImpl> mpImpl;
};
struct UndoAnimationPathImpl;
@@ -63,7 +62,7 @@ public:
virtual OUString GetComment() const SAL_OVERRIDE;
private:
- boost::scoped_ptr<UndoAnimationPathImpl> mpImpl;
+ std::unique_ptr<UndoAnimationPathImpl> mpImpl;
};
struct UndoTransitionImpl;
@@ -80,7 +79,7 @@ public:
virtual OUString GetComment() const SAL_OVERRIDE;
private:
- boost::scoped_ptr<UndoTransitionImpl> mpImpl;
+ std::unique_ptr<UndoTransitionImpl> mpImpl;
};
}