diff options
author | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-01-22 14:20:04 +0000 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-03-06 12:27:09 +0000 |
commit | 2d95bc0510d43c11bb3bd03f590e24ba3d7ca30f (patch) | |
tree | 03084adb86e87e71019b84bb17500eab12f1dfb5 /desktop | |
parent | ddd4a787ebde1b47e5ddfbd5995e2a0fe6b22ee2 (diff) |
Idle: Removed VCL_IDLE_PRIORITY_ prefix of enum
Change-Id: I12290bed7e4f298ab90393b8de6e2b6e7061e53f
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/gui/dp_gui_dialog2.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.cxx b/desktop/source/deployment/gui/dp_gui_dialog2.cxx index 9f926b4e20a7..3fb4919d1359 100644 --- a/desktop/source/deployment/gui/dp_gui_dialog2.cxx +++ b/desktop/source/deployment/gui/dp_gui_dialog2.cxx @@ -709,7 +709,7 @@ ExtMgrDialog::ExtMgrDialog(vcl::Window *pParent, TheExtensionManager *pManager) m_pUpdateBtn->Enable(false); - m_aIdle.SetPriority(IdlePriority::VCL_IDLE_PRIORITY_LOWEST); + m_aIdle.SetPriority(IdlePriority::LOWEST); m_aIdle.SetIdleHdl( LINK( this, ExtMgrDialog, TimeOutHdl ) ); } @@ -1191,7 +1191,7 @@ UpdateRequiredDialog::UpdateRequiredDialog(vcl::Window *pParent, TheExtensionMan m_pUpdateBtn->Enable( false ); m_pCloseBtn->GrabFocus(); - m_aIdle.SetPriority( IdlePriority::VCL_IDLE_PRIORITY_MEDIUM ); + m_aIdle.SetPriority( IdlePriority::MEDIUM ); m_aIdle.SetIdleHdl( LINK( this, UpdateRequiredDialog, TimeOutHdl ) ); } |