diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-08 13:04:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-09 08:09:58 +0200 |
commit | e9a3b06f4e2b22f26006e0df730ad23d715ecbb6 (patch) | |
tree | 75d02d9b233a997c4bb139effd9637f36f130d89 /svx/source/svdraw/svdmodel.cxx | |
parent | 33e596e03cd486ebb992327988f4bebebd23a0c9 (diff) |
use unique_ptr in SdrUndoGroup
Change-Id: I569c56b6114e07b2a227ad0f906c1a5188a94af4
Reviewed-on: https://gerrit.libreoffice.org/61528
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/svdraw/svdmodel.cxx')
-rw-r--r-- | svx/source/svdraw/svdmodel.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx index 2c1576d4988a..9f83988fc7b6 100644 --- a/svx/source/svdraw/svdmodel.cxx +++ b/svx/source/svdraw/svdmodel.cxx @@ -574,7 +574,7 @@ void SdrModel::AddUndo(SdrUndoAction* pUndo) { if (pCurrentUndoGroup) { - pCurrentUndoGroup->AddAction(pUndo); + pCurrentUndoGroup->AddAction(std::unique_ptr<SdrUndoAction>(pUndo)); } else { |