diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-06-05 00:00:45 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-06 07:13:50 +0000 |
commit | cc813c946c2fdb2e050db773572431a537e37215 (patch) | |
tree | 132eec4b900b0abe7ddf069b5e320e500a6193d9 /include/sfx2 | |
parent | d2e0d10d481f76e142635463bdccb6bc6706cc13 (diff) |
tdf#89329: use unique_ptr for pImpl in unoctitm
Change-Id: I580c6c9999b35137ae883a84898b9d03fd7cb056
Reviewed-on: https://gerrit.libreoffice.org/25899
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/unoctitm.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/unoctitm.hxx b/include/sfx2/unoctitm.hxx index 8d58738ec694..235c815270ea 100644 --- a/include/sfx2/unoctitm.hxx +++ b/include/sfx2/unoctitm.hxx @@ -73,7 +73,7 @@ class SfxDispatchController_Impl; class SfxOfficeDispatch : public ::cppu::ImplInheritanceHelper1< SfxStatusDispatcher, css::lang::XUnoTunnel > { friend class SfxDispatchController_Impl; - SfxDispatchController_Impl* pControllerItem; + std::unique_ptr<SfxDispatchController_Impl> pImpl; public: SfxOfficeDispatch( SfxBindings& rBind, SfxDispatcher* pDispat, |