summaryrefslogtreecommitdiffstats
path: root/sd/source/filter/ppt/pptinanimations.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-24 10:48:53 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-25 06:14:11 +0000
commit4266cd19650269c94c63168d1e9cbc105ff297f9 (patch)
tree3c748c119a7e9eb3441eb5c0689daf9c77943f4e /sd/source/filter/ppt/pptinanimations.cxx
parentsd/source/ui/app boost->std (diff)
downloadcore-4266cd19650269c94c63168d1e9cbc105ff297f9.tar.gz
core-4266cd19650269c94c63168d1e9cbc105ff297f9.zip
sd/source/filter boost::scoped_ptr->std::unique_ptr
Change-Id: I335ff685def480933d846657df81f28242059c18 Reviewed-on: https://gerrit.libreoffice.org/18823 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source/filter/ppt/pptinanimations.cxx')
-rw-r--r--sd/source/filter/ppt/pptinanimations.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sd/source/filter/ppt/pptinanimations.cxx b/sd/source/filter/ppt/pptinanimations.cxx
index c9a46c11251e..3b8199907edf 100644
--- a/sd/source/filter/ppt/pptinanimations.cxx
+++ b/sd/source/filter/ppt/pptinanimations.cxx
@@ -68,7 +68,6 @@
#include <algorithm>
#include <memory>
-#include <boost/scoped_ptr.hpp>
using ::std::map;
using ::com::sun::star::beans::NamedValue;
@@ -223,7 +222,7 @@ int AnimationImporter::import( const Reference< XDrawPage >& xPage, const DffRec
{
Reference< XAnimationNode > xParent;
- boost::scoped_ptr<Atom> pAtom(Atom::import( rProgTagContentHd, mrStCtrl ));
+ std::unique_ptr<Atom> pAtom(Atom::import( rProgTagContentHd, mrStCtrl ));
if( pAtom )
{
nNodes = importAnimationContainer( pAtom.get(), xParent );