summaryrefslogtreecommitdiff
path: root/vcl/source/treelist/treelist.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/treelist/treelist.cxx')
-rw-r--r--vcl/source/treelist/treelist.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/treelist/treelist.cxx b/vcl/source/treelist/treelist.cxx
index 00a437e19f81..d62db0dccb49 100644
--- a/vcl/source/treelist/treelist.cxx
+++ b/vcl/source/treelist/treelist.cxx
@@ -22,7 +22,6 @@
#include <vcl/viewdataentry.hxx>
#include <tools/debug.hxx>
#include <osl/diagnose.h>
-#include <o3tl/make_unique.hxx>
#include <memory>
#include <map>
@@ -1123,7 +1122,7 @@ void SvListView::Impl::InitTable()
pEntry = m_rThis.pModel->First();
while( pEntry )
{
- pViewData = o3tl::make_unique<SvViewDataEntry>();
+ pViewData = std::make_unique<SvViewDataEntry>();
m_rThis.InitViewData( pViewData.get(), pEntry );
m_DataTable.insert(std::make_pair(pEntry, std::move(pViewData)));
pEntry = m_rThis.pModel->Next( pEntry );