summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-31 15:53:46 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-09-01 09:26:25 +0200
commit65ca7bd49ae3c567f2cc4331c6b35f350649dcee (patch)
tree128d11e72c8c51419f9507ecba1f77530f0ca0eb /vcl
parentca208daed39c5d4614f5055e8d7860e6f2c0e2f6 (diff)
call SetPriority() on correct Idle
Change-Id: I56ce5607d77410b9252a7fa1093325dc8d67983c Reviewed-on: https://gerrit.libreoffice.org/41760 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/dockmgr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/dockmgr.cxx b/vcl/source/window/dockmgr.cxx
index 0ae6a941b961..bc3eb2cc5b42 100644
--- a/vcl/source/window/dockmgr.cxx
+++ b/vcl/source/window/dockmgr.cxx
@@ -91,7 +91,7 @@ ImplDockFloatWin2::ImplDockFloatWin2( vcl::Window* pParent, WinBits nWinBits,
maDockIdle.SetDebugName( "vcl::ImplDockFloatWin2 maDockIdle" );
maEndDockIdle.SetInvokeHandler( LINK( this, ImplDockFloatWin2, EndDockTimerHdl ) );
- maDockIdle.SetPriority( TaskPriority::HIGH_IDLE );
+ maEndDockIdle.SetPriority( TaskPriority::HIGH_IDLE );
maEndDockIdle.SetDebugName( "vcl::ImplDockFloatWin2 maEndDockIdle" );
}