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 /sd | |
parent | 7bf06ba95d6ba0e673f2aff5b4412dbf08702590 (diff) |
Fix for bug fdo#41997, cleanup vcl enumeration
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/tools/IdleDetection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/tools/IdleDetection.cxx b/sd/source/ui/tools/IdleDetection.cxx index 4ba616330965..e0fba1ac7cd6 100644 --- a/sd/source/ui/tools/IdleDetection.cxx +++ b/sd/source/ui/tools/IdleDetection.cxx @@ -59,7 +59,7 @@ sal_Int32 IdleDetection::GetIdleState (const ::Window* pWindow) sal_Int32 IdleDetection::CheckInputPending (void) { - if (GetpApp()->AnyInput(INPUT_MOUSE | INPUT_KEYBOARD | INPUT_PAINT)) + if (GetpApp()->AnyInput(VCL_INPUT_MOUSE | VCL_INPUT_KEYBOARD | INPUT_PAINT)) return IDET_SYSTEM_EVENT_PENDING; else return IDET_IDLE; |