Kaydet (Commit) 3dcf50fb authored tarafından Pranav Kant's avatar Pranav Kant

lokdialog: Don't leak tooltip text window through tunnelling f/w

Change-Id: I0491c86fdb1511ee4841aa670428c78aba24b8d0
üst a39cefd9
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include <unotools/localedatawrapper.hxx> #include <unotools/localedatawrapper.hxx>
#include <comphelper/lok.hxx>
#include <vcl/i18nhelp.hxx> #include <vcl/i18nhelp.hxx>
#include <vcl/unohelp.hxx> #include <vcl/unohelp.hxx>
#include <vcl/timer.hxx> #include <vcl/timer.hxx>
...@@ -157,6 +158,9 @@ static bool ImplHandleMouseFloatMode( vcl::Window* pChild, const Point& rMousePo ...@@ -157,6 +158,9 @@ static bool ImplHandleMouseFloatMode( vcl::Window* pChild, const Point& rMousePo
static void ImplHandleMouseHelpRequest( vcl::Window* pChild, const Point& rMousePos ) static void ImplHandleMouseHelpRequest( vcl::Window* pChild, const Point& rMousePos )
{ {
if (comphelper::LibreOfficeKit::isActive())
return;
ImplSVData* pSVData = ImplGetSVData(); ImplSVData* pSVData = ImplGetSVData();
if ( !pSVData->maHelpData.mpHelpWin || if ( !pSVData->maHelpData.mpHelpWin ||
!( pSVData->maHelpData.mpHelpWin->IsWindowOrChild( pChild ) || !( pSVData->maHelpData.mpHelpWin->IsWindowOrChild( pChild ) ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment