summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-13 11:58:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2020-02-13 16:30:05 +0100
commit43b068aade8c1eedbfd0fa4f4c50bfd5bdc9b823 (patch)
treee0da20f37617302d98fd52ae5e7abb21fed49eb8 /vcl
parente76bb4eab607148381e70310ef9e22cc6213555a (diff)
use TopLevelWindowLocker for the lock other windows problem
Change-Id: Ic5d279ff9271ca24d9d32728d63322e8acc2037d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88599 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/dialog.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx
index fc16fa6291b9..588fbbd874fa 100644
--- a/vcl/source/window/dialog.cxx
+++ b/vcl/source/window/dialog.cxx
@@ -1150,15 +1150,6 @@ void Dialog::EndAllDialogs( vcl::Window const * pParent )
}
}
-VclPtr<Dialog> Dialog::GetMostRecentExecutingDialog()
-{
- ImplSVData* pSVData = ImplGetSVData();
- auto& rExecuteDialogs = pSVData->mpWinData->mpExecuteDialogs;
- if (!rExecuteDialogs.empty())
- return rExecuteDialogs.back();
- return nullptr;
-}
-
void Dialog::SetModalInputMode( bool bModal )
{
if ( bModal == mbModalMode )