diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-19 12:22:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-25 11:09:41 +0200 |
commit | e68520937281cc97542b7eb27e8736148d16fae4 (patch) | |
tree | ddfa9c323f823abd11af5ef191b886acb23086e6 /include/sfx2 | |
parent | 7658798496b1b3705155d1289f0fc82eab7cab7d (diff) |
loplugin:useuniqueptr in CmisPropertiesWindow
Change-Id: I113160675aa7af0a3a425fe0cab4f68ee24adf27
Reviewed-on: https://gerrit.libreoffice.org/60956
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/dinfdlg.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx index 39a738b3edba..a4b7e680c6e3 100644 --- a/include/sfx2/dinfdlg.hxx +++ b/include/sfx2/dinfdlg.hxx @@ -570,7 +570,7 @@ private: VclPtr<VclBox> m_pBox; sal_Int32 m_nItemHeight; SvNumberFormatter m_aNumberFormatter; - std::vector< CmisPropertyLine* > m_aCmisPropertiesLines; + std::vector< std::unique_ptr<CmisPropertyLine> > m_aCmisPropertiesLines; public: CmisPropertiesWindow(SfxTabPage* pParent); ~CmisPropertiesWindow(); |