summaryrefslogtreecommitdiff
path: root/sc/source/ui/docshell/docsh.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/docshell/docsh.cxx')
-rw-r--r--sc/source/ui/docshell/docsh.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx
index 7dbef7be7089..06c1b6a47860 100644
--- a/sc/source/ui/docshell/docsh.cxx
+++ b/sc/source/ui/docshell/docsh.cxx
@@ -143,7 +143,6 @@
#include <datastream.hxx>
#include <documentlinkmgr.hxx>
#include <refupdatecontext.hxx>
-#include <o3tl/make_unique.hxx>
#include <memory>
#include <vector>
@@ -2351,7 +2350,7 @@ bool ScDocShell::ConvertTo( SfxMedium &rMed )
ScExtDocOptions* pExtDocOpt = m_aDocument.GetExtDocOptions();
if( !pExtDocOpt )
{
- m_aDocument.SetExtDocOptions( o3tl::make_unique<ScExtDocOptions>() );
+ m_aDocument.SetExtDocOptions( std::make_unique<ScExtDocOptions>() );
pExtDocOpt = m_aDocument.GetExtDocOptions();
}
pViewShell->GetViewData().WriteExtOptions( *pExtDocOpt );
@@ -2736,7 +2735,7 @@ bool ScDocShell::HasAutomaticTableName( const OUString& rFilter )
std::unique_ptr<ScDocFunc> ScDocShell::CreateDocFunc()
{
- return o3tl::make_unique<ScDocFuncDirect>( *this );
+ return std::make_unique<ScDocFuncDirect>( *this );
}
ScDocument* ScDocShell::GetClipDoc()