diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-06-14 09:35:26 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-06-14 09:35:26 +0200 |
commit | 7f6a17756d62226dfa2af1ded365e3b3ac9f8d21 (patch) | |
tree | 596ab4f7e4d572b08e9affaefc4fae4e344b5f15 /include | |
parent | 9a3a9a393c74872a5ec5f227b7c30ae3d4bcb1aa (diff) |
Let CreateItemSet return unique_ptr
...and address resulting loplugin:useuniqueptr
Change-Id: Ia79eb8d59ce5092b2d93b656eab687096baedf17
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/shell.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/shell.hxx b/include/sfx2/shell.hxx index ddb4665d8c67..82364685964e 100644 --- a/include/sfx2/shell.hxx +++ b/include/sfx2/shell.hxx @@ -452,7 +452,7 @@ public: void SetDisableFlags( SfxDisableFlags nFlags ); SfxDisableFlags GetDisableFlags() const; - virtual SfxItemSet* CreateItemSet( sal_uInt16 nId ); + virtual std::unique_ptr<SfxItemSet> CreateItemSet( sal_uInt16 nId ); virtual void ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet ); /** Set the name of the sidebar context that is broadcast on calls |