[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - sc/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Wed Aug 15 12:10:07 UTC 2018
sc/source/ui/app/inputhdl.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 20b9dad2e881a743172559a29b66d30ca6ecbf6a
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Wed Aug 15 09:11:26 2018 +0100
Commit: Markus Mohrhard <markus.mohrhard at googlemail.com>
CommitDate: Wed Aug 15 14:09:52 2018 +0200
Resolves: tdf#118609 crash in calc after some manipulation through basic
Change-Id: I518b15359b29c845604d2e9cde64bdb637078ba1
Reviewed-on: https://gerrit.libreoffice.org/59053
Tested-by: Jenkins
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx
index b572b9ac06dc..d3912f18c032 100644
--- a/sc/source/ui/app/inputhdl.cxx
+++ b/sc/source/ui/app/inputhdl.cxx
@@ -1908,7 +1908,7 @@ void ScInputHandler::SetInputWindow( ScInputWindow* pNew )
void ScInputHandler::StopInputWinEngine( bool bAll )
{
- if (pInputWin)
+ if (pInputWin && !pInputWin->IsDisposed())
pInputWin->StopEditEngine( bAll );
pTopView = nullptr; // invalid now
More information about the Libreoffice-commits
mailing list