summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-05-26 01:22:49 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-26 07:46:38 +0000
commit132f7b2a8cc986ee79c4124ed2bc368d6dfaa418 (patch)
tree6b36702858406b6d32139a6cd67c687b257e8f88 /include
parent205863589da24441546f77f36fda8bc27489ac93 (diff)
tdf#89329: use unique_ptr for pImpl in basmgr
Change-Id: I2d6c6b997155183b058872db354de1b407998d3a Reviewed-on: https://gerrit.libreoffice.org/25472 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/basic/basmgr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/basic/basmgr.hxx b/include/basic/basmgr.hxx
index 9f493873f930..5a98b51d921b 100644
--- a/include/basic/basmgr.hxx
+++ b/include/basic/basmgr.hxx
@@ -116,7 +116,7 @@ private:
OUString maStorageName;
bool mbDocMgr;
- BasicManagerImpl* mpImpl;
+ std::unique_ptr<BasicManagerImpl> mpImpl;
BASIC_DLLPRIVATE void Init();