diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-05-26 02:08:55 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-26 07:37:21 +0000 |
commit | c6e776e44124f8245117377cbd28af8e0c050ab1 (patch) | |
tree | 459b0e68eb73ef6dd64f0a8c2023b484a67e6d5d /include | |
parent | 656f7c15c5a6e3cbc7df3e2e56287289d1296f8a (diff) |
tdf#89329: use unique_ptr for pImpl in inettbc
Change-Id: I1205acb2823db95cc75c0b559581d278646b616a
Reviewed-on: https://gerrit.libreoffice.org/25484
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/inettbc.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/inettbc.hxx b/include/svtools/inettbc.hxx index 1aa02b196a96..686ad59e8f2a 100644 --- a/include/svtools/inettbc.hxx +++ b/include/svtools/inettbc.hxx @@ -36,7 +36,7 @@ friend class SvtURLBox_Impl; OUString aBaseURL; OUString aPlaceHolder; rtl::Reference< SvtMatchContext_Impl > pCtx; - SvtURLBox_Impl* pImp; + std::unique_ptr<SvtURLBox_Impl> pImpl; INetProtocol eSmartProtocol; bool bAutoCompleteMode : 1; bool bOnlyDirectories : 1; |