summaryrefslogtreecommitdiff
path: root/include/editeng/svxacorr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-17 15:32:23 +0200
committerNoel Grandin <noel@peralex.com>2015-11-18 08:35:34 +0200
commit2e9277c05034c157d640c289d59499be9d1ca382 (patch)
treea5cc868d73bf7a2afddd21b3fed86eea75d7a858 /include/editeng/svxacorr.hxx
parent032dae364b4853635186b7541e40c71588f9050a (diff)
use unique_ptr for pImpl in editeng/
Change-Id: I43ae9f706db15594b3a0c5cba41436d009588393
Diffstat (limited to 'include/editeng/svxacorr.hxx')
-rw-r--r--include/editeng/svxacorr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/editeng/svxacorr.hxx b/include/editeng/svxacorr.hxx
index 9b0f05fe69c6..a839e2208f0c 100644
--- a/include/editeng/svxacorr.hxx
+++ b/include/editeng/svxacorr.hxx
@@ -133,7 +133,7 @@ public:
class EDITENG_DLLPUBLIC SvxAutocorrWordList
{
struct Impl;
- Impl* mpImpl;
+ std::unique_ptr<Impl> mpImpl;
SvxAutocorrWordList( const SvxAutocorrWordList& ) = delete;
const SvxAutocorrWordList& operator= ( const SvxAutocorrWordList& ) = delete;