summaryrefslogtreecommitdiff
path: root/include/svtools/fileview.hxx
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-05-26 02:01:30 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-26 07:39:34 +0000
commit15fed4931ed100fbf0c4769b5b75ac51a95edf84 (patch)
tree67e89cfa175d144de355dad8971e79d80e228341 /include/svtools/fileview.hxx
parentc6e776e44124f8245117377cbd28af8e0c050ab1 (diff)
tdf#89329: use unique_ptr for pImpl in fileview
Change-Id: Ief2fd163cc024b4a654a32c24cef832c68ad5e96 Reviewed-on: https://gerrit.libreoffice.org/25482 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svtools/fileview.hxx')
-rw-r--r--include/svtools/fileview.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/fileview.hxx b/include/svtools/fileview.hxx
index eb570cef88ef..b0a75e785127 100644
--- a/include/svtools/fileview.hxx
+++ b/include/svtools/fileview.hxx
@@ -70,7 +70,7 @@ struct FileViewAsyncAction
class SVT_DLLPUBLIC SvtFileView : public Control
{
private:
- SvtFileView_Impl* mpImp;
+ std::unique_ptr<SvtFileView_Impl> mpImpl;
bool bSortColumn;
css::uno::Sequence< OUString > mpBlackList;