diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-27 11:46:17 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-27 14:11:45 +0200 |
commit | 7360ddd34aa446e6439c733ef0f819a58d709744 (patch) | |
tree | 21ab0d29dea9eb902ca02da38abadccc50abdde9 | |
parent | bee82941206bfae3f57a3008babec7c16b129b5d (diff) |
cid#1401328 Uncaught exception
Change-Id: I1c4bdd4afec30d7d52054d8c9bd4958191c480f8
Reviewed-on: https://gerrit.libreoffice.org/76470
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sc/inc/scmod.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/scmod.hxx b/sc/inc/scmod.hxx index a82ac9337b12..363a9dd2a354 100644 --- a/sc/inc/scmod.hxx +++ b/sc/inc/scmod.hxx @@ -87,7 +87,7 @@ class SAL_DLLPUBLIC_RTTI ScModule: public SfxModule, public SfxListener, public ScMessagePool* m_pMessagePool; // there is no global InputHandler anymore, each View has its own ScInputHandler* m_pRefInputHandler; - std::unique_ptr<ScViewCfg> m_pViewCfg; + std::unique_ptr<ScViewCfg, o3tl::default_delete<ScViewCfg>> m_pViewCfg; std::unique_ptr<ScDocCfg, o3tl::default_delete<ScDocCfg>> m_pDocCfg; std::unique_ptr<ScAppCfg, o3tl::default_delete<ScAppCfg>> m_pAppCfg; std::unique_ptr<ScDefaultsCfg> m_pDefaultsCfg; |