summaryrefslogtreecommitdiff
path: root/svtools/source/control/asynclink.cxx
diff options
context:
space:
mode:
authorJennifer Liebel <jliebel94@gmail.com>2015-01-14 09:25:30 +0000
committerTobias Madl <tobias.madl.dev@gmail.com>2015-03-06 12:27:06 +0000
commit49524c6dcf04b9dadef8d2b084cf26abcf70b8a9 (patch)
tree88702970cd6437b0e1e25ef15e46a58b696b1eb7 /svtools/source/control/asynclink.cxx
parent826143684d2697a8620373dce18fa5f24332d5cb (diff)
idle includes and enum use
Change-Id: I8a280c54d81c7da74c9ab03ff3fc788e373ca4e4
Diffstat (limited to 'svtools/source/control/asynclink.cxx')
-rw-r--r--svtools/source/control/asynclink.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/svtools/source/control/asynclink.cxx b/svtools/source/control/asynclink.cxx
index ca745b2bbe55..bf7b0c9ed304 100644
--- a/svtools/source/control/asynclink.cxx
+++ b/svtools/source/control/asynclink.cxx
@@ -22,6 +22,7 @@
#include <osl/mutex.hxx>
#include <tools/debug.hxx>
#include <vcl/timer.hxx>
+#include <vcl/idle.hxx>
#include <vcl/svapp.hxx>
@@ -54,7 +55,7 @@ bAllowDoubles
if( !_pIdle )
{
_pIdle = new Idle;
- _pIdle->SetPriority( VCL_IDLE_PRIORITY_HIGHEST );
+ _pIdle->SetPriority( IdlePriority::VCL_IDLE_PRIORITY_HIGHEST );
_pIdle->SetIdleHdl( STATIC_LINK(
this, AsynchronLink, HandleCall) );
}