diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-10 14:49:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-11 08:17:42 +0200 |
commit | 1476d95b6ed3afa35cccc46f61865ea938b62144 (patch) | |
tree | 7d89eea8c9a61cb8676389d2c066792e7b8b30fe /include/svl | |
parent | 9a9d407977494b405479b138a33fc6f8f1e2911d (diff) |
loplugin:useuniqueptr in StylePool::createIterator
Change-Id: I1a7bdfc00352c25f5d2db9ef195000d16f909537
Reviewed-on: https://gerrit.libreoffice.org/60263
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/stylepool.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/stylepool.hxx b/include/svl/stylepool.hxx index 497ae845a36b..5fe2f2197186 100644 --- a/include/svl/stylepool.hxx +++ b/include/svl/stylepool.hxx @@ -62,7 +62,7 @@ public: @postcond the iterator "points before the first" SfxItemSet of the pool. The first StylePoolIterator::getNext() call will deliver the first SfxItemSet. */ - IStylePoolIteratorAccess* createIterator( const bool bSkipUnusedItemSets = false, + std::unique_ptr<IStylePoolIteratorAccess> createIterator( const bool bSkipUnusedItemSets = false, const bool bSkipIgnorableItems = false ); ~StylePool(); |