summaryrefslogtreecommitdiff
path: root/vcl/android/androidinst.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/android/androidinst.cxx')
-rw-r--r--vcl/android/androidinst.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx
index b20d7c4b9300..dfb885518560 100644
--- a/vcl/android/androidinst.cxx
+++ b/vcl/android/androidinst.cxx
@@ -572,11 +572,11 @@ void AndroidSalInstance::DoReleaseYield (int nTimeoutMS)
bool AndroidSalInstance::AnyInput( sal_uInt16 nType )
{
- (void) nType;
- // FIXME: ideally we should check the input queue to avoid being busy ...
- fprintf (stderr, "FIXME: AnyInput returns true\n");
- // mpApp->inputQueue ? ...
- return true;
+ if( (nType & VCL_INPUT_TIMER) != 0 )
+ return CheckTimeout( false );
+ // FIXME: ideally we should check our input queue here ...
+ fprintf (stderr, "FIXME: AnyInput returns false\n");
+ return false;
}
class AndroidSalSystem : public SvpSalSystem {