summaryrefslogtreecommitdiff
path: root/include/unotools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-26 08:31:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-26 12:18:05 +0200
commitbfcd3b24bc065488b729c0846e74f2efabb3451e (patch)
tree7ae696ecba380a4100af0fad80e39fb4d0ae85c9 /include/unotools
parente6c62ff1361ac5b9b430ddd5dae729a8b10aadff (diff)
cid#1401328 Uncaught exception
Change-Id: I3585fc84437d084670727b048d3b26231c76e659 Reviewed-on: https://gerrit.libreoffice.org/76352 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.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 bc5630cac444..8ea6a7fbfa1a 100644
--- a/include/unotools/fltrcfg.hxx
+++ b/include/unotools/fltrcfg.hxx
@@ -19,6 +19,7 @@
#ifndef INCLUDED_UNOTOOLS_FLTRCFG_HXX
#define INCLUDED_UNOTOOLS_FLTRCFG_HXX
+#include <o3tl/deleter.hxx>
#include <unotools/unotoolsdllapi.h>
#include <unotools/configitem.hxx>
#include <memory>
@@ -27,7 +28,7 @@ struct SvtFilterOptions_Impl;
class UNOTOOLS_DLLPUBLIC SvtFilterOptions : public utl::ConfigItem
{
private:
- std::unique_ptr<SvtFilterOptions_Impl> pImpl;
+ std::unique_ptr<SvtFilterOptions_Impl, o3tl::default_delete<SvtFilterOptions_Impl>> pImpl;
virtual void ImplCommit() override;