diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-10-26 11:40:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-10-26 16:10:29 +0200 |
commit | 0446f73d27a0c43de1a2d5e07c9510a287be6af2 (patch) | |
tree | ce2ff16f0809c5e3aec25c1d177e45156d784b31 /sc | |
parent | 455a1775ccef305cfb96cc5f67c8ee47b7f3a2ae (diff) |
tdf#153519 use new IdleTask::waitUntilIdleDispatched
to wait until the Idle inside sw/ has done populating the navigator
tree.
Which required
(*) moving the code down from test/ to vcl/ to avoid circular dependency
issues.
(*) adding a call SolarMutexGuard before Application::Yield inside
IdleTask::waitUntilIdleDispatched
(*) exposing the function to python by adding a method to the
XToolkitExperimental UNO API
Change-Id: Iee418f7a0beb1f5b53addb7fe25823d61720eb3a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158495
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/subsequent_filters_test3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/subsequent_filters_test3.cxx b/sc/qa/unit/subsequent_filters_test3.cxx index 0c2ec7864de2..cdde83913715 100644 --- a/sc/qa/unit/subsequent_filters_test3.cxx +++ b/sc/qa/unit/subsequent_filters_test3.cxx @@ -50,7 +50,7 @@ #include <unotools/syslocaleoptions.hxx> #include "helper/qahelper.hxx" #include <officecfg/Office/Common.hxx> -#include <test/idletask.hxx> +#include <vcl/idletask.hxx> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; |