diff options
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/macroass.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cui/source/tabpages/macroass.cxx b/cui/source/tabpages/macroass.cxx index 233b9b9a55e6..a4a23b23e75a 100644 --- a/cui/source/tabpages/macroass.cxx +++ b/cui/source/tabpages/macroass.cxx @@ -25,6 +25,7 @@ #include <svl/macitem.hxx> #include <svx/dialogs.hrc> #include <svtools/svmedit.hxx> +#include <vcl/idle.hxx> #include "cfgutil.hxx" #include <sfx2/app.hxx> #include <sfx2/evntconf.hxx> @@ -191,7 +192,7 @@ void _SfxMacroTabPage::LaunchFillGroup() if (!mpImpl->maFillGroupIdle.GetTimeoutHdl().IsSet()) { mpImpl->maFillGroupIdle.SetIdleHdl( STATIC_LINK( this, _SfxMacroTabPage, TimeOut_Impl ) ); - mpImpl->maFillGroupIdle.SetPriority( VCL_IDLE_PRIORITY_HIGHEST ); + mpImpl->maFillGroupIdle.SetPriority( IdlePriority::VCL_IDLE_PRIORITY_HIGHEST ); mpImpl->maFillGroupIdle.Start(); } } |