summaryrefslogtreecommitdiffstats
path: root/include/xmloff/shapeimport.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-17 08:03:48 +0200
committerNoel Grandin <noel@peralex.com>2015-11-17 08:23:35 +0200
commite1d88a574562b5c36b01eafdaa0670e5cc1a7c39 (patch)
treed1f00c56fbb6224aa461de6d60f0d1f259d9768a /include/xmloff/shapeimport.hxx
parentUpdated core (diff)
downloadcore-e1d88a574562b5c36b01eafdaa0670e5cc1a7c39.tar.gz
core-e1d88a574562b5c36b01eafdaa0670e5cc1a7c39.zip
use unique_ptr for pImpl's in xmloff/
Change-Id: Ib95118941938af83fed566a085837e17f092017a
Diffstat (limited to 'include/xmloff/shapeimport.hxx')
-rw-r--r--include/xmloff/shapeimport.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/xmloff/shapeimport.hxx b/include/xmloff/shapeimport.hxx
index 9ced9eb2c293..b347ec4f9613 100644
--- a/include/xmloff/shapeimport.hxx
+++ b/include/xmloff/shapeimport.hxx
@@ -35,6 +35,7 @@
#include <xmloff/table/XMLTableImport.hxx>
#include <basegfx/vector/b3dvector.hxx>
#include <vector>
+#include <memory>
class SvXMLImport;
class SvXMLImportContext;
@@ -268,7 +269,7 @@ struct XMLShapeImportPageContextImpl;
class XMLOFF_DLLPUBLIC XMLShapeImportHelper : public salhelper::SimpleReferenceObject
{
- XMLShapeImportHelperImpl* mpImpl;
+ std::unique_ptr<XMLShapeImportHelperImpl> mpImpl;
XMLShapeImportPageContextImpl* mpPageContext;