From e901a1e3a6914da49cc69fbb898cf2df1e9e92c7 Mon Sep 17 00:00:00 2001 From: Ashod Nakashian Date: Wed, 18 Dec 2019 07:30:14 -0500 Subject: vcl: don't use null window in FloatingWindow HitTest Change-Id: I551f31cf30c7a58642becebe0256684055d0703a Reviewed-on: https://gerrit.libreoffice.org/85383 Reviewed-by: Ashod Nakashian Tested-by: Ashod Nakashian (cherry picked from commit 65685bac09a4320602f4dda5151d247c5a83a75c) --- vcl/source/window/floatwin.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx index baa3a46bc978..4eef15b88be2 100644 --- a/vcl/source/window/floatwin.cxx +++ b/vcl/source/window/floatwin.cxx @@ -520,6 +520,8 @@ FloatingWindow* FloatingWindow::ImplFloatHitTest( vcl::Window* pReference, const // use the border window to have the exact position vcl::Window *pBorderWin = pWin->GetWindow( GetWindowType::Border ); + if (!pBorderWin) + break; // the top-left corner in output coordinates ie (0,0) tools::Rectangle devRect( pBorderWin->ImplOutputToUnmirroredAbsoluteScreenPixel( tools::Rectangle( Point(), pBorderWin->GetSizePixel()) ) ) ; -- cgit