summaryrefslogtreecommitdiff
path: root/include/unotools
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-05-29 20:42:46 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-30 07:25:10 +0000
commit5251a7c39c7c2ee6bc16965484913002d662d44d (patch)
tree719d07d981e51c6ac5e67dd335707224d4884d33 /include/unotools
parent04068eb6f9c153950e4fda75733728fc8922f668 (diff)
tdf#89329: use unique_ptr for pImpl in fltrcfg
Change-Id: Icbb7d122d7f553215de562a98b0127764b30faa1 Reviewed-on: https://gerrit.libreoffice.org/25628 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/unotools')
-rw-r--r--include/unotools/fltrcfg.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/unotools/fltrcfg.hxx b/include/unotools/fltrcfg.hxx
index ceb4d9764636..a6954ffb3a5b 100644
--- a/include/unotools/fltrcfg.hxx
+++ b/include/unotools/fltrcfg.hxx
@@ -21,12 +21,13 @@
#include <unotools/unotoolsdllapi.h>
#include <unotools/configitem.hxx>
+#include <memory>
struct SvtFilterOptions_Impl;
class UNOTOOLS_DLLPUBLIC SvtFilterOptions : public utl::ConfigItem
{
private:
- SvtFilterOptions_Impl* pImp;
+ std::unique_ptr<SvtFilterOptions_Impl> pImpl;
const css::uno::Sequence<OUString>& GetPropertyNames();