diff options
Diffstat (limited to 'svl/source/items/style.cxx')
-rw-r--r-- | svl/source/items/style.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index 3d403dfa0326..c4c9cadef9b1 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -35,7 +35,6 @@ #include <unotools/syslocale.hxx> #include <algorithm> #include <comphelper/servicehelper.hxx> -#include <o3tl/make_unique.hxx> #include <rtl/ustrbuf.hxx> #include <string.h> @@ -270,7 +269,7 @@ SfxItemSet& SfxStyleSheetBase::GetItemSet() std::unique_ptr<SfxItemSet> SfxStyleSheetBase::GetItemSetForPreview() { - return o3tl::make_unique<SfxItemSet>(GetItemSet()); + return std::make_unique<SfxItemSet>(GetItemSet()); } /** @@ -620,7 +619,7 @@ std::unique_ptr<SfxStyleSheetIterator> SfxStyleSheetBasePool::CreateIterator SfxStyleSearchBits mask ) { - return o3tl::make_unique<SfxStyleSheetIterator>(this,eFam,mask); + return std::make_unique<SfxStyleSheetIterator>(this,eFam,mask); } SfxStyleSheetBase* SfxStyleSheetBasePool::Create |