diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-06-04 23:54:47 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-06 07:16:09 +0000 |
commit | 6b51e9afe01171a46f19fb96b1c2a2074d5a92ca (patch) | |
tree | 19528dc37b8e10b91fd33e5546c8b82c21826bb7 /include | |
parent | 1c087eb58df11bbfb14a564e5ad73e29664b73ce (diff) |
tdf#89329: use unique_ptr for pImpl in prnmon
Change-Id: I73fe5dc51f2352c5def618ad4011b436f15230a2
Reviewed-on: https://gerrit.libreoffice.org/25900
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/prnmon.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/prnmon.hxx b/include/sfx2/prnmon.hxx index 289d57dc65f2..f54e8837bb16 100644 --- a/include/sfx2/prnmon.hxx +++ b/include/sfx2/prnmon.hxx @@ -34,7 +34,7 @@ struct SfxPrintOptDlg_Impl; class SfxPrintOptionsDialog : public ModalDialog { private: - SfxPrintOptDlg_Impl* pDlgImpl; + std::unique_ptr<SfxPrintOptDlg_Impl> pDlgImpl; SfxViewShell* pViewSh; SfxItemSet* pOptions; VclPtr<SfxTabPage> pPage; |