formula/source/ui/dlg/formula.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 44aa71792bace19bfee54ccf95126ca964fabccf Author: Julien Nabet <[email protected]> Date: Sun Nov 15 11:35:40 2015 +0100 tdf#95798: CRASH: when finish Function wizard on Report builder Following http://cgit.freedesktop.org/libreoffice/core/commit/?id=844b7287a4ccd8e3d5e458bb1dc6c52e71322b01 Change-Id: Ia5a2cd39cf3fdf87619f55710a188545830b4088 Reviewed-on: https://gerrit.libreoffice.org/19970 Reviewed-by: Lionel Elie Mamane <[email protected]> Tested-by: Jenkins <[email protected]> diff --git a/formula/source/ui/dlg/formula.cxx b/formula/source/ui/dlg/formula.cxx index 0d3fbbc..4fe6478 100644 --- a/formula/source/ui/dlg/formula.cxx +++ b/formula/source/ui/dlg/formula.cxx @@ -1740,7 +1740,8 @@ void FormulaModalDialog::SetFocusWin(vcl::Window *pWin,const OString& nUniqueId) bool FormulaModalDialog::PreNotify( NotifyEvent& rNEvt ) { - m_pImpl->PreNotify( rNEvt ); + if (m_pImpl) + m_pImpl->PreNotify( rNEvt ); return ModalDialog::PreNotify(rNEvt); } _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
