summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2019-06-06 17:43:20 +0100
committerMichael Meeks <michael.meeks@collabora.com>2019-06-06 23:21:51 +0200
commit326f281715fa221af12f07ff4cd60c0d37844606 (patch)
treea74539e4192acf745276f61862a3732e5e81bfa1 /vcl
parente6adec29beadb83ebd3941275b99e2dd1be02f61 (diff)
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 <michael.meeks@collabora.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/winproc.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx
index 7461df654a6c..e3d81e6aa62d 100644
--- a/vcl/source/window/winproc.cxx
+++ b/vcl/source/window/winproc.cxx
@@ -1137,6 +1137,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();
}