[Libreoffice-commits] core.git: sc/inc
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Mon Jul 22 10:21:08 UTC 2019
sc/inc/scmod.hxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 0ee301231cb3dbd2eb4f4b69bb2a0d18a1e37096
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Mon Jul 22 08:25:20 2019 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Mon Jul 22 12:20:21 2019 +0200
cid#1401328 Uncaught exception
Change-Id: I7b038954fbe6b4a5d463c543313a424c4a6aabdc
Reviewed-on: https://gerrit.libreoffice.org/76090
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sc/inc/scmod.hxx b/sc/inc/scmod.hxx
index 7d0d7e0a3675..18fbc691ba43 100644
--- a/sc/inc/scmod.hxx
+++ b/sc/inc/scmod.hxx
@@ -21,6 +21,7 @@
#define INCLUDED_SC_INC_SCMOD_HXX
#include "scdllapi.h"
+#include <o3tl/deleter.hxx>
#include <vcl/timer.hxx>
#include <vcl/idle.hxx>
#include <svl/lstner.hxx>
@@ -88,7 +89,7 @@ class SAL_DLLPUBLIC_RTTI ScModule: public SfxModule, public SfxListener, public
ScInputHandler* m_pRefInputHandler;
std::unique_ptr<ScViewCfg> m_pViewCfg;
std::unique_ptr<ScDocCfg> m_pDocCfg;
- std::unique_ptr<ScAppCfg> m_pAppCfg;
+ std::unique_ptr<ScAppCfg, o3tl::default_delete<ScAppCfg>> m_pAppCfg;
std::unique_ptr<ScDefaultsCfg> m_pDefaultsCfg;
std::unique_ptr<ScFormulaCfg> m_pFormulaCfg;
std::unique_ptr<ScInputCfg> m_pInputCfg;
More information about the Libreoffice-commits
mailing list