diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-12 14:43:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-13 11:01:12 +0100 |
commit | 62ecafe8cffad810be842b73ee7ae5c3327edfb8 (patch) | |
tree | a9d079c593044f11b084c6f69767d91b9cc5d4a5 /sfx2/source/inc | |
parent | a9b34c4b8cfd242b7458df52252d665ed7316239 (diff) |
use unique_ptr in SfxWorkWindow
Change-Id: Id7133fd21a0d0d2a3138ba5f27e7637c9ed65d78
Reviewed-on: https://gerrit.libreoffice.org/65024
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/inc')
-rw-r--r-- | sfx2/source/inc/workwin.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/inc/workwin.hxx b/sfx2/source/inc/workwin.hxx index 38c41653dfdb..626c4f768cd3 100644 --- a/sfx2/source/inc/workwin.hxx +++ b/sfx2/source/inc/workwin.hxx @@ -195,7 +195,7 @@ class SfxWorkWindow final tools::Rectangle aClientArea; tools::Rectangle aUpperClientArea; VclPtr<SfxSplitWindow> pSplit[SFX_SPLITWINDOWS_MAX]; - std::vector<SfxChild_Impl*> + std::vector<std::unique_ptr<SfxChild_Impl>> aChildren; std::vector<std::unique_ptr<SfxChildWin_Impl>> aChildWins; |