diff options
Diffstat (limited to 'starmath/source/smdll.cxx')
-rw-r--r-- | starmath/source/smdll.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/starmath/source/smdll.cxx b/starmath/source/smdll.cxx index 731f15d6f530..a53d53ed0ffd 100644 --- a/starmath/source/smdll.cxx +++ b/starmath/source/smdll.cxx @@ -37,7 +37,6 @@ #include <starmath.hrc> #include <svx/xmlsecctrl.hxx> -#include <o3tl/make_unique.hxx> namespace { @@ -54,7 +53,7 @@ namespace SfxObjectFactory& rFactory = SmDocShell::Factory(); - auto pUniqueModule = o3tl::make_unique<SmModule>(&rFactory); + auto pUniqueModule = std::make_unique<SmModule>(&rFactory); SmModule* pModule = pUniqueModule.get(); SfxApplication::SetModule(SfxToolsModule::Math, std::move(pUniqueModule)); |