summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-07-16 16:03:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-07-16 21:53:05 +0200
commit3ec78de2322f781a98802acc77cfb3e71a08eb3d (patch)
treed58bd5346126a3d9248b3508393f44add08d9f3c
parent5636b633b4fcaf610426136c73dc3d1ede991030 (diff)
tdf#142923 Deleting comment in Writer leaves visual artifact behind
Change-Id: Ia2e55886513e81847dd0ac6c697e7cea34e01bdc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119075 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--vcl/source/window/window.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 3a960cf76984..72dd9d17b424 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -2176,7 +2176,7 @@ vcl::Font Window::GetPointFont(vcl::RenderContext const & rRenderContext) const
void Window::Show(bool bVisible, ShowFlags nFlags)
{
- if ( isDisposed() || mpWindowImpl->mbVisible == bVisible )
+ if ( !mpWindowImpl || mpWindowImpl->mbVisible == bVisible )
return;
VclPtr<vcl::Window> xWindow(this);
@@ -2187,7 +2187,7 @@ void Window::Show(bool bVisible, ShowFlags nFlags)
if ( !bVisible )
{
ImplHideAllOverlaps();
- if( xWindow->isDisposed() )
+ if( !xWindow->mpWindowImpl )
return;
if ( mpWindowImpl->mpBorderWindow )
@@ -2213,7 +2213,7 @@ void Window::Show(bool bVisible, ShowFlags nFlags)
vcl::Region aInvRegion = mpWindowImpl->maWinClipRegion;
- if( xWindow->isDisposed() )
+ if( !xWindow->mpWindowImpl )
return;
bRealVisibilityChanged = mpWindowImpl->mbReallyVisible;
@@ -2349,7 +2349,7 @@ void Window::Show(bool bVisible, ShowFlags nFlags)
bool bNoActivate(nFlags & (ShowFlags::NoActivate|ShowFlags::NoFocusChange));
mpWindowImpl->mpFrame->Show( true, bNoActivate );
}
- if( xWindow->isDisposed() )
+ if( !xWindow->mpWindowImpl )
return;
// Query the correct size of the window, if we are waiting for
@@ -2367,13 +2367,13 @@ void Window::Show(bool bVisible, ShowFlags nFlags)
mpWindowImpl->mpFrameData->mpBuffer->SetOutputSizePixel(GetOutputSizePixel());
}
- if( xWindow->isDisposed() )
+ if( !xWindow->mpWindowImpl )
return;
ImplShowAllOverlaps();
}
- if( xWindow->isDisposed() )
+ if( !xWindow->mpWindowImpl )
return;
// the SHOW/HIDE events also serve as indicators to send child creation/destroy events to the access bridge