From a2bd7470368b2a44edf25680bd250c4d2b7428cb Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Mon, 4 Feb 2019 19:43:45 +0100 Subject: o3tl::make_unique -> std::make_unique in svx/ Since it is now possible to use C++14, it's time to replace the temporary solution with the standard one Change-Id: Ic91b7170b10299001167e78ade1d24c16ce9319e Reviewed-on: https://gerrit.libreoffice.org/67475 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- svx/source/sdr/properties/groupproperties.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'svx/source/sdr/properties/groupproperties.cxx') diff --git a/svx/source/sdr/properties/groupproperties.cxx b/svx/source/sdr/properties/groupproperties.cxx index 410e2c641f48..b5be536ede5b 100644 --- a/svx/source/sdr/properties/groupproperties.cxx +++ b/svx/source/sdr/properties/groupproperties.cxx @@ -19,7 +19,6 @@ #include -#include #include #include #include @@ -40,7 +39,7 @@ namespace sdr // Groups have in principle no ItemSet. To support methods like // GetMergedItemSet() the local one is used. Thus, all items in the pool // may be used and a pool itemset is created. - return o3tl::make_unique(rPool); + return std::make_unique(rPool); } GroupProperties::GroupProperties(SdrObject& rObj) -- cgit