diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-08-11 13:10:29 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-08-11 14:14:52 +0200 |
commit | da3d4d2160ee71ebef9aa42ad4b9f2af9da2ed02 (patch) | |
tree | 18d3ee25eae3308d646f52d4000a18ca184ddf46 /sw | |
parent | db17a874af37350b3270932175854ee674447bc1 (diff) |
Resolves: tdf#111571 crash on restarting writer with modeless biblio dialog
Change-Id: I2663f84c28721f61c1ed7c8d92a228cafa8f1177
Reviewed-on: https://gerrit.libreoffice.org/41036
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/index/swuiidxmrk.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/index/swuiidxmrk.cxx b/sw/source/ui/index/swuiidxmrk.cxx index 06eb81bbd41e..0e2296701967 100644 --- a/sw/source/ui/index/swuiidxmrk.cxx +++ b/sw/source/ui/index/swuiidxmrk.cxx @@ -1666,8 +1666,8 @@ SwAuthMarkFloatDlg::SwAuthMarkFloatDlg(SfxBindings* _pBindings, { Initialize(pInfo); SwWrtShell* pWrtShell = ::GetActiveWrtShell(); - OSL_ENSURE(pWrtShell, "No shell?"); - m_aContent.ReInitDlg(*pWrtShell); + if (pWrtShell) + m_aContent.ReInitDlg(*pWrtShell); } void SwAuthMarkFloatDlg::Activate() |