summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-06-06 12:47:35 +0200
committerMichael Stahl <mstahl@redhat.com>2016-06-07 19:32:24 +0000
commit0e3f354daa15e92a5a762a638f1674922864943e (patch)
treefce16ac8406fed7390e6522d92fb651e263144bd /include/svx
parent16e6fcfc367d9a1b0d67d1b4df0c087887f1ec34 (diff)
tdf#89329: use unique_ptr for pImpl in unoshape
Change-Id: I1a7a7b68f58430d0975087b0f7c7ab36dc29a686 Reviewed-on: https://gerrit.libreoffice.org/25966 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/unoshape.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/unoshape.hxx b/include/svx/unoshape.hxx
index 08c377040891..79e3f02b4d50 100644
--- a/include/svx/unoshape.hxx
+++ b/include/svx/unoshape.hxx
@@ -119,7 +119,7 @@ private:
OUString maShapeName;
/** these members are used to optimize XMultiProperty calls */
- SvxShapeImpl* mpImpl;
+ std::unique_ptr<SvxShapeImpl> mpImpl;
bool mbIsMultiPropertyCall;
css::uno::WeakReference< css::container::XIndexContainer > mxGluePoints;