diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-05 13:26:16 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-05 13:26:16 +1100 |
commit | 836320f64f8704dd150f72734192fcebebce89dd (patch) | |
tree | a25f8df8dbde48e28ee8c267d762f7546340d3e2 /sc/source/ui | |
parent | 5e31c9d9e42da8d8776621b2f80dfe9e04ca0871 (diff) |
vcl: remove VCL_INPUT_MOUSEANDKEYBOARD, not necessary
Change-Id: Ia5b9581d06f6884d6a06abde9cb4039b64c29a05
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/app/scmod.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx index b5ca139671f2..0ac43159c041 100644 --- a/sc/source/ui/app/scmod.cxx +++ b/sc/source/ui/app/scmod.cxx @@ -1828,7 +1828,7 @@ static void lcl_CheckNeedsRepaint( ScDocShell* pDocShell ) IMPL_LINK_NOARG_TYPED(ScModule, IdleHandler, Timer *, void) { - if ( Application::AnyInput( VCL_INPUT_MOUSEANDKEYBOARD ) ) + if ( Application::AnyInput( VclInputFlags::MOUSE | VclInputFlags::KEYBOARD ) ) { aIdleTimer.Start(); // Timeout unchanged return; |