From 175a2063effa1c5a3eab896c6c4b0d07f3588edb Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 10 Jan 2020 12:30:24 +0200 Subject: use more std::make_shared found using 'git grep', I tried using clang-tidy, but it only successfully found a tiny fraction of these Change-Id: I61c7d85105ff7a911722750e759d6641d578da33 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86526 Tested-by: Jenkins Reviewed-by: Noel Grandin --- oox/source/shape/ShapeContextHandler.cxx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'oox/source/shape/ShapeContextHandler.cxx') diff --git a/oox/source/shape/ShapeContextHandler.cxx b/oox/source/shape/ShapeContextHandler.cxx index 23041d6cee48..acc8624af602 100644 --- a/oox/source/shape/ShapeContextHandler.cxx +++ b/oox/source/shape/ShapeContextHandler.cxx @@ -123,9 +123,8 @@ uno::Reference const & ShapeContextHandler::getWp *rFragmentHandler, xShape, pMasterShape, - ShapePtr( - new oox::drawingml::Shape( - "com.sun.star.drawing.CustomShape")))); + std::make_shared( + "com.sun.star.drawing.CustomShape"))); break; default: break; @@ -160,8 +159,7 @@ ShapeContextHandler::getGraphicShapeContext(::sal_Int32 Element ) { if (! mxGraphicShapeContext.is()) { - std::shared_ptr pFragmentHandler - (new ShapeFragmentHandler(*mxFilterBase, msRelationFragmentPath)); + auto pFragmentHandler = std::make_shared(*mxFilterBase, msRelationFragmentPath); ShapePtr pMasterShape; switch (Element & 0xffff) @@ -216,7 +214,7 @@ ShapeContextHandler::getDiagramShapeContext() { if (!mxDiagramShapeContext.is()) { - std::shared_ptr pFragmentHandler(new ShapeFragmentHandler(*mxFilterBase, msRelationFragmentPath)); + auto pFragmentHandler = std::make_shared(*mxFilterBase, msRelationFragmentPath); mpShape.reset(new Shape()); mxDiagramShapeContext.set(new DiagramGraphicDataContext(*pFragmentHandler, mpShape)); } -- cgit v1.2.3