summaryrefslogtreecommitdiff
path: root/include/svtools/extcolorcfg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-17 14:36:31 +0200
committerNoel Grandin <noel@peralex.com>2015-11-18 08:35:34 +0200
commitf43db673558a1139fba783973c87de9b79033425 (patch)
tree961efab15b7a334f94f5fd69f1b72a16838cbae0 /include/svtools/extcolorcfg.hxx
parent66d2b72667792cb18b25805387824d636e2a455c (diff)
use unique_ptr for pImpl in svtools/
Change-Id: Ic82db5859464978ca58094e2b6f44e3c9ba30b4c
Diffstat (limited to 'include/svtools/extcolorcfg.hxx')
-rw-r--r--include/svtools/extcolorcfg.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/svtools/extcolorcfg.hxx b/include/svtools/extcolorcfg.hxx
index a2b472665263..1f0db36ef777 100644
--- a/include/svtools/extcolorcfg.hxx
+++ b/include/svtools/extcolorcfg.hxx
@@ -25,6 +25,7 @@
#include <com/sun/star/uno/Sequence.h>
#include <svl/SfxBroadcaster.hxx>
#include <svl/lstner.hxx>
+#include <memory>
namespace svtools {
@@ -82,7 +83,7 @@ public:
class SVT_DLLPUBLIC EditableExtendedColorConfig
{
- ExtendedColorConfig_Impl* m_pImpl;
+ std::unique_ptr<ExtendedColorConfig_Impl> m_pImpl;
bool m_bModified;
public:
EditableExtendedColorConfig();