diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2011-10-21 16:54:35 -0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-10-21 20:48:03 +0100 |
commit | b0224f8050373cbdde58c3dee1bbda71976b50b6 (patch) | |
tree | d04b160b0c28c9be5446130234b995e6fe150bd8 /sc | |
parent | 7bf06ba95d6ba0e673f2aff5b4412dbf08702590 (diff) |
Fix for bug fdo#41997, cleanup vcl enumeration
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/chartlis.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/app/scmod.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/chartlis.cxx b/sc/source/core/tool/chartlis.cxx index 8c52fe48e297..6f9129de95f5 100644 --- a/sc/source/core/tool/chartlis.cxx +++ b/sc/source/core/tool/chartlis.cxx @@ -567,7 +567,7 @@ void ScChartListenerCollection::StartTimer() IMPL_LINK( ScChartListenerCollection, TimerHdl, Timer*, EMPTYARG ) { - if ( Application::AnyInput( INPUT_KEYBOARD ) ) + if ( Application::AnyInput( VCL_INPUT_KEYBOARD ) ) { aTimer.Start(); return 0; diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx index 7932fca3b0f2..b4284e745783 100644 --- a/sc/source/ui/app/scmod.cxx +++ b/sc/source/ui/app/scmod.cxx @@ -1877,7 +1877,7 @@ IMPL_LINK( ScModule, IdleHandler, Timer*, EMPTYARG ) IMPL_LINK( ScModule, SpellTimerHdl, Timer*, EMPTYARG ) { - if ( Application::AnyInput( INPUT_KEYBOARD ) ) + if ( Application::AnyInput( VCL_INPUT_KEYBOARD ) ) { aSpellTimer.Start(); return 0; // dann spaeter wieder... |