[Libreoffice-commits] core.git: include/unotools
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Fri Jul 26 10:19:00 UTC 2019
include/unotools/fltrcfg.hxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit bfcd3b24bc065488b729c0846e74f2efabb3451e
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Jul 26 08:31:24 2019 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Jul 26 12:18:05 2019 +0200
cid#1401328 Uncaught exception
Change-Id: I3585fc84437d084670727b048d3b26231c76e659
Reviewed-on: https://gerrit.libreoffice.org/76352
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
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;
More information about the Libreoffice-commits
mailing list