summaryrefslogtreecommitdiff
path: root/include/oox
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-01-10 12:30:24 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-01-10 13:07:41 +0100
commit175a2063effa1c5a3eab896c6c4b0d07f3588edb (patch)
tree4a252a7e9e6e714343e9ff21c3d78c8e41086009 /include/oox
parentddf901664d3dd12191f98b77182652a6889f2b26 (diff)
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 <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/oox')
-rw-r--r--include/oox/ole/axcontrol.hxx4
-rw-r--r--include/oox/vml/vmlshapecontainer.hxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/include/oox/ole/axcontrol.hxx b/include/oox/ole/axcontrol.hxx
index 0be97b5043f3..ec2555a4dfed 100644
--- a/include/oox/ole/axcontrol.hxx
+++ b/include/oox/ole/axcontrol.hxx
@@ -938,7 +938,7 @@ private:
template< typename ModelType >
inline ModelType& EmbeddedControl::createModel()
{
- std::shared_ptr< ModelType > xModel( new ModelType );
+ auto xModel = std::make_shared<ModelType>();
mxModel = xModel;
xModel->setFormComponentMode();
return *xModel;
@@ -947,7 +947,7 @@ inline ModelType& EmbeddedControl::createModel()
template< typename ModelType, typename ParamType >
inline ModelType& EmbeddedControl::createModel( const ParamType& rParam )
{
- std::shared_ptr< ModelType > xModel( new ModelType( rParam ) );
+ auto xModel = std::make_shared<ModelType>( rParam );
mxModel = xModel;
xModel->setFormComponentMode();
return *xModel;
diff --git a/include/oox/vml/vmlshapecontainer.hxx b/include/oox/vml/vmlshapecontainer.hxx
index ff39d5f7212c..6be9020051c2 100644
--- a/include/oox/vml/vmlshapecontainer.hxx
+++ b/include/oox/vml/vmlshapecontainer.hxx
@@ -125,7 +125,7 @@ private:
template< typename ShapeT >
std::shared_ptr<ShapeT> ShapeContainer::createShape()
{
- std::shared_ptr< ShapeT > xShape( new ShapeT( mrDrawing ) );
+ auto xShape = std::make_shared<ShapeT>( mrDrawing );
maShapes.push_back( xShape );
return xShape;
}