summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasily Melenchuk <vasily.melenchuk@cib.de>2023-10-25 13:48:39 +0300
committerVasily Melenchuk <vasily.melenchuk@cib.de>2023-11-02 09:41:06 +0100
commit3d83bdb94a43b7d77c5a2362cb8204caf47a6b54 (patch)
tree4cd097053984909a685a22a9eea69d84fabb8a5c
parent24ee09ab41924fd339835cbc7a54a5ba27f5c67e (diff)
vcl: removed redundant check
Change-Id: Iec2c344df9eb1fa61bb04355c3eee38499edcdac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158422 Tested-by: Jenkins Reviewed-by: Vasily Melenchuk <vasily.melenchuk@cib.de>
-rw-r--r--vcl/source/window/window.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 35b17761e2c4..437a8b14dcb6 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -2398,9 +2398,6 @@ void Window::Show(bool bVisible, ShowFlags nFlags)
// now only notify with a NULL data pointer, for all other clients except the access bridge.
if ( !bRealVisibilityChanged )
CallEventListeners( mpWindowImpl->mbVisible ? VclEventId::WindowShow : VclEventId::WindowHide );
- if( xWindow->isDisposed() )
- return;
-
}
Size Window::GetSizePixel() const