summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-01 16:49:23 +0200
committerNoel Grandin <noel@peralex.com>2015-01-07 11:20:43 +0200
commit8aa3cb98adb8675ff3f09d2c1da35d2423e57493 (patch)
tree3e7f2df75f1176a64034be8c7de592dc92996054 /sd
parentfa52e2090651fc2b2f3ba77b8f0af196d705730f (diff)
fdo#84938: convert VCL_INPUT_ #defines to 'enum class'
Change-Id: I155e45f58974a2b946c4a7703b350bcbfbad342e
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/tools/IdleDetection.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/tools/IdleDetection.cxx b/sd/source/ui/tools/IdleDetection.cxx
index eae76b92d062..df7c23e337f1 100644
--- a/sd/source/ui/tools/IdleDetection.cxx
+++ b/sd/source/ui/tools/IdleDetection.cxx
@@ -43,7 +43,7 @@ sal_Int32 IdleDetection::GetIdleState (const vcl::Window* pWindow)
sal_Int32 IdleDetection::CheckInputPending (void)
{
- if (Application::AnyInput(VCL_INPUT_MOUSE | VCL_INPUT_KEYBOARD | VCL_INPUT_PAINT))
+ if (Application::AnyInput(VclInputFlags::MOUSE | VclInputFlags::KEYBOARD | VclInputFlags::PAINT))
return IDET_SYSTEM_EVENT_PENDING;
else
return IDET_IDLE;