diff options
author | Jennifer Liebel <jliebel94@gmail.com> | 2015-01-14 09:25:30 +0000 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-03-06 12:27:06 +0000 |
commit | 49524c6dcf04b9dadef8d2b084cf26abcf70b8a9 (patch) | |
tree | 88702970cd6437b0e1e25ef15e46a58b696b1eb7 /cui/source/tabpages/macroass.cxx | |
parent | 826143684d2697a8620373dce18fa5f24332d5cb (diff) |
idle includes and enum use
Change-Id: I8a280c54d81c7da74c9ab03ff3fc788e373ca4e4
Diffstat (limited to 'cui/source/tabpages/macroass.cxx')
-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(); } } |