diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-06-13 13:48:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-06-13 13:48:18 +0200 |
commit | 889ea6a50fb8ee154b2816ba287f33f0a3ce239b (patch) | |
tree | e2fd7798fde578b3a4f9e02127be7b8596744adf /svx/inc/sdr/properties/groupproperties.hxx | |
parent | 8f187d38b18f65ed70a225f63869147605fda704 (diff) |
Let BaseProperties::CreateObjectSpecificItemSet return unique_ptr
Change-Id: Ic734fe2a425ca1c821ba91df17aecac5ef40a000
Diffstat (limited to 'svx/inc/sdr/properties/groupproperties.hxx')
-rw-r--r-- | svx/inc/sdr/properties/groupproperties.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/inc/sdr/properties/groupproperties.hxx b/svx/inc/sdr/properties/groupproperties.hxx index 50d3fb16e652..7e2a71177841 100644 --- a/svx/inc/sdr/properties/groupproperties.hxx +++ b/svx/inc/sdr/properties/groupproperties.hxx @@ -31,7 +31,7 @@ namespace sdr { protected: // create a new itemset - virtual SfxItemSet* CreateObjectSpecificItemSet(SfxItemPool& rPool) override; + virtual std::unique_ptr<SfxItemSet> CreateObjectSpecificItemSet(SfxItemPool& rPool) override; // test changeability for a single item virtual bool AllowItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem = nullptr) const override; |