diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-11 12:53:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-13 13:08:52 +0000 |
commit | cd8fdb46fd9a215532688585f3466d36b1daa1ac (patch) | |
tree | 8e25067a0e72ce5afe9c490f9eef567821f594c7 /include/editeng/bulletitem.hxx | |
parent | e6d7d737522124350a17a3cfdee055f03200a274 (diff) |
new loplugin: useuniqueptr: editeng
Change-Id: I6df65eab882780d996ee996b5fef8020186b6d98
Reviewed-on: https://gerrit.libreoffice.org/32958
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng/bulletitem.hxx')
-rw-r--r-- | include/editeng/bulletitem.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/editeng/bulletitem.hxx b/include/editeng/bulletitem.hxx index 98c872be7119..63bc5820329f 100644 --- a/include/editeng/bulletitem.hxx +++ b/include/editeng/bulletitem.hxx @@ -45,7 +45,8 @@ enum class SvxBulletStyle class EDITENG_DLLPUBLIC SvxBulletItem : public SfxPoolItem { vcl::Font aFont; - GraphicObject* pGraphicObject; + std::unique_ptr<GraphicObject> + pGraphicObject; OUString aPrevText; OUString aFollowText; sal_uInt16 nStart; |