diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-05-22 17:20:03 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-22 17:56:48 +0000 |
commit | 7a7f49a734aaaae0e5fe3a4f54914b01fb0d511f (patch) | |
tree | 9af17b4c0ef1b8af6c802330c313672310241cdc /include/svx | |
parent | bc9459f095c55609f4d90533c0f11f17922ebb34 (diff) |
tdf#89329: use unique_ptr for pImpl in pszctrl
Change-Id: I60d129df8eebfed3996d491379fa9d69aa3fe097
Reviewed-on: https://gerrit.libreoffice.org/25315
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/pszctrl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/pszctrl.hxx b/include/svx/pszctrl.hxx index 7467376f8cea..f8e8dca4d07e 100644 --- a/include/svx/pszctrl.hxx +++ b/include/svx/pszctrl.hxx @@ -32,7 +32,7 @@ struct SvxPosSizeStatusBarControl_Impl; class SVX_DLLPUBLIC SvxPosSizeStatusBarControl : public SfxStatusBarControl { private: - SvxPosSizeStatusBarControl_Impl* pImp; + std::unique_ptr<SvxPosSizeStatusBarControl_Impl> pImpl; SVX_DLLPRIVATE OUString GetMetricStr_Impl( long nVal ); public: SFX_DECL_STATUSBAR_CONTROL(); |