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 --- basic/source/runtime/runtime.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basic') diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx index 3a9cb95264d5..0f9f3dfc4fc1 100644 --- a/basic/source/runtime/runtime.cxx +++ b/basic/source/runtime/runtime.cxx @@ -405,8 +405,8 @@ std::shared_ptr SbiInstance::PrepareNumberFormatter( sal_uInt eDate = aSysLocale.GetLocaleData().getDateOrder(); } - std::shared_ptr pNumberFormatter( - new SvNumberFormatter( comphelper::getProcessComponentContext(), eLangType )); + std::shared_ptr pNumberFormatter = + std::make_shared( comphelper::getProcessComponentContext(), eLangType ); // Several parser methods pass SvNumberFormatter::IsNumberFormat() a number // format index to parse against. Tell the formatter the proper date -- cgit