diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-05-02 14:21:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-04 10:07:00 +0200 |
commit | 5ad5f5ec62cc259f054b7343d7b4edce372e95e2 (patch) | |
tree | 3a7dc8956afc8841d7c7a30e37a7674496ce1557 /include | |
parent | 2bffccf7af58a4c076c597f847eed2068574e704 (diff) |
make CreateStyleFamilies return std::unique_ptr
Change-Id: Ibb7bec9ede8045a6cea42c02f61f14ad36d2b434
Reviewed-on: https://gerrit.libreoffice.org/53730
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/module.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/module.hxx b/include/sfx2/module.hxx index ef60ed219326..1eb9ef1f414f 100644 --- a/include/sfx2/module.hxx +++ b/include/sfx2/module.hxx @@ -83,7 +83,7 @@ public: const SfxItemSet& rSet ); virtual void Invalidate(sal_uInt16 nId = 0) override; - virtual SfxStyleFamilies* CreateStyleFamilies() { return nullptr; } + virtual std::unique_ptr<SfxStyleFamilies> CreateStyleFamilies() { return nullptr; } static SfxModule* GetActiveModule( SfxViewFrame* pFrame=nullptr ); static FieldUnit GetCurrentFieldUnit(); |