diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-05-26 01:26:46 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-26 07:45:55 +0000 |
commit | 205863589da24441546f77f36fda8bc27489ac93 (patch) | |
tree | 607d4a12801ebce22605dc101db3310218b61798 /include | |
parent | 61a70fb5094ca6edfef9500f358c517e6674cb0c (diff) |
tdf#89329: use unique_ptr for pImpl in addresstemplate
Change-Id: I3e2cac86101e8a82eefacbe937cf40139fa77090
Reviewed-on: https://gerrit.libreoffice.org/25473
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/addresstemplate.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/svtools/addresstemplate.hxx b/include/svtools/addresstemplate.hxx index 3406a26ba19c..e52b17a51b0e 100644 --- a/include/svtools/addresstemplate.hxx +++ b/include/svtools/addresstemplate.hxx @@ -64,8 +64,7 @@ namespace svt css::uno::Reference< css::container::XNameAccess > m_xCurrentDatasourceTables; - AddressBookSourceDialogData* - m_pImpl; + std::unique_ptr<AddressBookSourceDialogData> m_pImpl; public: AddressBookSourceDialog( vcl::Window* _pParent, |