vcl/source/window/winproc.cxx | 6 ++++++ 1 file changed, 6 insertions(+)
New commits: commit ffe4a1d2aa9516a4c0e36b93c48b77e771637ac8 Author: Michael Meeks <[email protected]> AuthorDate: Thu Jun 6 17:43:20 2019 +0100 Commit: Andras Timar <[email protected]> CommitDate: Mon Jun 17 14:56:07 2019 +0200 lok: remove ext text event re-entrancy hazard. Change-Id: I7566c158330bab77589d422c61c64210727ab835 Reviewed-on: https://gerrit.libreoffice.org/73625 Tested-by: Jenkins Reviewed-by: Michael Meeks <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/73756 Reviewed-by: Andras Timar <[email protected]> Tested-by: Andras Timar <[email protected]> diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx index e914d4e414b6..2db746df8162 100644 --- a/vcl/source/window/winproc.cxx +++ b/vcl/source/window/winproc.cxx @@ -1133,6 +1133,12 @@ static bool ImplHandleExtTextInput( vcl::Window* pWindow, } if( !pChild->ImplGetWindowImpl()->mpFrameData->mnFocusId ) break; + + if (comphelper::LibreOfficeKit::isActive()) + { + SAL_WARN("vcl", "Failed to get ext text input context"); + break; + } Application::Yield(); } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
