summaryrefslogtreecommitdiff
path: root/xmloff/inc
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2016-09-09 10:25:31 +0200
committerDavid Tardon <dtardon@redhat.com>2016-09-09 12:14:04 +0200
commit109ea4752b734683483aef5154d8debca2d300a3 (patch)
tree452f493e0355a7d19aed0df29be59f8807d4f4db /xmloff/inc
parentb42af6cee1d2c8a2bdb37d1a6e7e53704b839ee2 (diff)
use std::shared_ptr
Change-Id: Ib285d2445077a0263a09b36bf1a6fa1fe7f59496
Diffstat (limited to 'xmloff/inc')
-rw-r--r--xmloff/inc/animationimport.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/xmloff/inc/animationimport.hxx b/xmloff/inc/animationimport.hxx
index afe509c49b9f..cea9782d64d8 100644
--- a/xmloff/inc/animationimport.hxx
+++ b/xmloff/inc/animationimport.hxx
@@ -20,6 +20,8 @@
#ifndef INCLUDED_XMLOFF_INC_ANIMATIONIMPORT_HXX
#define INCLUDED_XMLOFF_INC_ANIMATIONIMPORT_HXX
+#include <memory>
+
#include <xmloff/xmlictxt.hxx>
#include <com/sun/star/animations/XAnimationNode.hpp>
@@ -31,7 +33,7 @@ class AnimationsImportHelperImpl;
class AnimationNodeContext : public SvXMLImportContext
{
- AnimationsImportHelperImpl* mpHelper;
+ std::shared_ptr<AnimationsImportHelperImpl> mpHelper;
bool mbRootContext;
css::uno::Reference< css::animations::XAnimationNode > mxNode;
@@ -45,8 +47,7 @@ public:
sal_uInt16 nPrfx,
const OUString& rLocalName,
const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList,
- AnimationsImportHelperImpl* mpImpl = nullptr );
- virtual ~AnimationNodeContext();
+ std::shared_ptr<AnimationsImportHelperImpl> pImpl = nullptr );
virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override;