summaryrefslogtreecommitdiffstats
path: root/include/xmloff/xmlexppr.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/xmlexppr.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/xmlexppr.hxx')
-rw-r--r--include/xmloff/xmlexppr.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/xmloff/xmlexppr.hxx b/include/xmloff/xmlexppr.hxx
index 78f0678440bf..ad990e18c2ff 100644
--- a/include/xmloff/xmlexppr.hxx
+++ b/include/xmloff/xmlexppr.hxx
@@ -28,6 +28,7 @@
#include <o3tl/typed_flags_set.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
+#include <memory>
enum class SvXmlExportFlags {
NONE = 0x0000,
@@ -52,7 +53,7 @@ class SvXMLExport;
class XMLOFF_DLLPUBLIC SvXMLExportPropertyMapper : public salhelper::SimpleReferenceObject
{
struct Impl;
- Impl* mpImpl;
+ std::unique_ptr<Impl> mpImpl;
protected: