summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdogrp.cxx
diff options
context:
space:
mode:
authorGabor Kelemen <kelemen.gabor2@nisz.hu>2019-02-04 19:43:45 +0100
committerMiklos Vajna <vmiklos@collabora.com>2019-02-12 14:59:17 +0100
commita2bd7470368b2a44edf25680bd250c4d2b7428cb (patch)
tree0907596b7ff56a2a892fe2c12bcbc89f8aea1995 /svx/source/svdraw/svdogrp.cxx
parentdb346dde6179e7414289681d91b153a6ed259d05 (diff)
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 <vmiklos@collabora.com>
Diffstat (limited to 'svx/source/svdraw/svdogrp.cxx')
-rw-r--r--svx/source/svdraw/svdogrp.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdogrp.cxx b/svx/source/svdraw/svdogrp.cxx
index 7168b6206e61..f4c391eab0a3 100644
--- a/svx/source/svdraw/svdogrp.cxx
+++ b/svx/source/svdraw/svdogrp.cxx
@@ -49,18 +49,17 @@
#include <basegfx/polygon/b2dpolygontools.hxx>
#include <basegfx/polygon/b2dpolygon.hxx>
#include <libxml/xmlwriter.h>
-#include <o3tl/make_unique.hxx>
// BaseProperties section
std::unique_ptr<sdr::properties::BaseProperties> SdrObjGroup::CreateObjectSpecificProperties()
{
- return o3tl::make_unique<sdr::properties::GroupProperties>(*this);
+ return std::make_unique<sdr::properties::GroupProperties>(*this);
}
// DrawContact section
std::unique_ptr<sdr::contact::ViewContact> SdrObjGroup::CreateObjectSpecificViewContact()
{
- return o3tl::make_unique<sdr::contact::ViewContactOfGroup>(*this);
+ return std::make_unique<sdr::contact::ViewContactOfGroup>(*this);
}
SdrObjGroup::SdrObjGroup(SdrModel& rSdrModel)