diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-01-28 20:17:57 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-01-29 16:30:58 +0100 |
commit | d4d44e38de2b4a592a03f1985e25483189cc7542 (patch) | |
tree | 55e65c465aeb526d857a51db90ae85f45cf27659 /vcl/source/helper/idletask.cxx | |
parent | 4eaa50802d724b8744218c8993364fe7b6f03eaa (diff) |
reserve a TaskPriority for testtool IdleTask
Change-Id: I1fbd77cdeb643123afbb8bbdbd1ca38949e1b547
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162671
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'vcl/source/helper/idletask.cxx')
-rw-r--r-- | vcl/source/helper/idletask.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/helper/idletask.cxx b/vcl/source/helper/idletask.cxx index 7df0514912db..2865d8d0367a 100644 --- a/vcl/source/helper/idletask.cxx +++ b/vcl/source/helper/idletask.cxx @@ -14,8 +14,8 @@ IdleTask::IdleTask() : flag(false) { - //setting the Priority of Idle task to LOW, LOWEST - maIdle.SetPriority(TaskPriority::LOWEST); + //setting the Priority of Idle task to TOOLKIT_DEBUG + maIdle.SetPriority(TaskPriority::TOOLKIT_DEBUG); //set idle for callback maIdle.SetInvokeHandler(LINK(this, IdleTask, FlipFlag)); //starting the idle |