diff options
Diffstat (limited to 'embedserv/source')
-rw-r--r-- | embedserv/source/inprocserv/advisesink.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/embedserv/source/inprocserv/advisesink.cxx b/embedserv/source/inprocserv/advisesink.cxx index e13ad7260d2b..dd3b38194e68 100644 --- a/embedserv/source/inprocserv/advisesink.cxx +++ b/embedserv/source/inprocserv/advisesink.cxx @@ -19,8 +19,6 @@ #include <sal/config.h> -#include <o3tl/make_unique.hxx> - #include "advisesink.hxx" namespace inprocserv @@ -64,7 +62,7 @@ OleWrapperAdviseSink::OleWrapperAdviseSink( const ComSmart< IAdviseSink >& pList { if ( pFormatEtc ) { - m_pFormatEtc = o3tl::make_unique<FORMATETC>(); + m_pFormatEtc = std::make_unique<FORMATETC>(); m_pFormatEtc->cfFormat = pFormatEtc->cfFormat; m_pFormatEtc->ptd = nullptr; m_pFormatEtc->dwAspect = pFormatEtc->dwAspect; |