diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-10 12:30:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-10 13:07:41 +0100 |
commit | 175a2063effa1c5a3eab896c6c4b0d07f3588edb (patch) | |
tree | 4a252a7e9e6e714343e9ff21c3d78c8e41086009 /vcl/qt5 | |
parent | ddf901664d3dd12191f98b77182652a6889f2b26 (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 'vcl/qt5')
-rw-r--r-- | vcl/qt5/Qt5Menu.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qt5/Qt5Menu.cxx b/vcl/qt5/Qt5Menu.cxx index dd5c9895273e..e2ccd1ffc6af 100644 --- a/vcl/qt5/Qt5Menu.cxx +++ b/vcl/qt5/Qt5Menu.cxx @@ -195,7 +195,7 @@ void Qt5Menu::ReinitializeActionGroup(unsigned nPos) && (pPrevItem->mpActionGroup == pNextItem->mpActionGroup)) { std::shared_ptr<QActionGroup> pFirstActionGroup = pPrevItem->mpActionGroup; - std::shared_ptr<QActionGroup> pSecondActionGroup(new QActionGroup(nullptr)); + auto pSecondActionGroup = std::make_shared<QActionGroup>(nullptr); pSecondActionGroup->setExclusive(true); auto actions = pFirstActionGroup->actions(); |