diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-11 14:26:47 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-13 08:34:03 +0000 |
commit | a706bb06d5326e7a997dd1d71f3f947bd0ad28e6 (patch) | |
tree | 8ac34dea4e7e4106d3adbccc6a604b611928ffbe /sw/inc/numrule.hxx | |
parent | 8c73acd101c80a4479f25e35278a451dc3c4b22e (diff) |
new loplugin: useuniqueptr: sw part 1
Change-Id: I2bc55634e80976951ede768c97fbc4b7c4eda46c
Reviewed-on: https://gerrit.libreoffice.org/32963
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc/numrule.hxx')
-rw-r--r-- | sw/inc/numrule.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/numrule.hxx b/sw/inc/numrule.hxx index 88b8d5c35b35..028003c9c2ee 100644 --- a/sw/inc/numrule.hxx +++ b/sw/inc/numrule.hxx @@ -49,7 +49,7 @@ const sal_Unicode cBulletChar = 0x2022; ///< Character for lists. class SW_DLLPUBLIC SwNumFormat : public SvxNumberFormat, public SwClient { - SwFormatVertOrient* m_pVertOrient; + std::unique_ptr<SwFormatVertOrient> m_pVertOrient; //For i120928,record the cp info of graphic within bullet sal_Unicode m_cGrfBulletCP; SAL_DLLPRIVATE void UpdateNumNodes( SwDoc* pDoc ); |