diff options
author | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-02-26 07:28:54 +0000 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-03-06 12:27:10 +0000 |
commit | 8f9b0c869222e57f738bc25d51cc6364e3c6a65a (patch) | |
tree | 6383c789cf14f8455bdce31031a81dd38b423c35 /svtools/source/control | |
parent | 00717355c2d10bacbae46941b82247d74fd89108 (diff) |
Idle: Changed to new enum name
Change-Id: Id3852abe9bc7bbe774331a7d691abd2a79ff59b4
Diffstat (limited to 'svtools/source/control')
-rw-r--r-- | svtools/source/control/asynclink.cxx | 2 | ||||
-rw-r--r-- | svtools/source/control/tabbar.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/control/asynclink.cxx b/svtools/source/control/asynclink.cxx index 8821021ba44a..74225829cf8e 100644 --- a/svtools/source/control/asynclink.cxx +++ b/svtools/source/control/asynclink.cxx @@ -55,7 +55,7 @@ bAllowDoubles if( !_pIdle ) { _pIdle = new Idle; - _pIdle->SetPriority( IdlePriority::HIGHEST ); + _pIdle->SetPriority( SchedulerPriority::HIGHEST ); _pIdle->SetIdleHdl( STATIC_LINK( this, AsynchronLink, HandleCall) ); } diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx index c7f32018a326..b903d955605d 100644 --- a/svtools/source/control/tabbar.cxx +++ b/svtools/source/control/tabbar.cxx @@ -322,7 +322,7 @@ IMPL_LINK( TabBarEdit, ImplEndEditHdl, void*, pCancel ) // when it shows the context menu or the insert symbol dialog if ( !HasFocus() && HasChildPathFocus( true ) ) { - maLoseFocusIdle.SetPriority( IdlePriority::REPAINT ); + maLoseFocusIdle.SetPriority( SchedulerPriority::REPAINT ); maLoseFocusIdle.SetIdleHdl( LINK( this, TabBarEdit, ImplEndTimerHdl ) ); maLoseFocusIdle.Start(); } |