diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-01-25 01:05:25 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-01-25 01:05:25 +0200 |
commit | 4ae2d48862338bf96b11910424a4a61044786e95 (patch) | |
tree | da47df2dc6b1a030053d8d87714ae0dabfe9cedf | |
parent | 738851f76966981370f1b311b7e7d2066537f07c (diff) |
WaE: unused parameter 'nType'
-rw-r--r-- | vcl/android/androidinst.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index 91971e66ee2b..08c01ae4fea2 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -68,6 +68,7 @@ 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"); // global_android_app->inputQueue ? ... |