diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2020-12-30 10:05:26 +0100 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2021-01-13 08:47:15 +0100 |
commit | 8cbf3938ee3951ef53842bb5664bea6b57828111 (patch) | |
tree | 2d6b4e7f352fd6a489c4e4983728f61cb595a2e9 /vcl/source | |
parent | 229ee7c0ff5a69f09d6ac87dd585a11a8aacdcab (diff) |
Revert "jsdialog: disable idle notify"
This reverts commit 71ec214d7583f637fefcb5eca13c637cc6b38029.
and partially 54b5e6b4e083ce7a71e16ef622753898f38dc8ab
freeze/thaw functionality was added so no longer needed.
Change-Id: Iee29fa79bcebfd409fd3cea4f11cb1d48053daa6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108509
Tested-by: Jenkins
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/window/window.cxx | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index d897e94a0bea..755a17127634 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -755,8 +755,7 @@ ImplWinData::ImplWinData() : mnTrackFlags(ShowTrackFlags::NONE), mnIsTopWindow(sal_uInt16(~0)), // not initialized yet, 0/1 will indicate TopWindow (see IsTopWindow()) mbMouseOver(false), - mbEnableNativeWidget(false), - mbDisableIdleNotify(false) + mbEnableNativeWidget(false) { } @@ -3202,17 +3201,6 @@ VclPtr<Window> Window::FindLOKWindow(vcl::LOKWindowId nWindowId) return VclPtr<Window>(); } -bool Window::IsDisableIdleNotify() -{ - return ImplGetWinData()->mbDisableIdleNotify; -} - -void Window::SetDisableIdleNotify(bool bValue) -{ - if (ImplGetWinData()->mbDisableIdleNotify != bValue) - ImplGetWinData()->mbDisableIdleNotify = bValue; -} - bool Window::IsLOKWindowsEmpty() { return GetLOKWindowsMap().empty(); |