Date: prev next · Thread: first prev next last
2012 Archives by date, by thread · List index


On 01/25/2012 12:15 AM, Tor Lillqvist wrote:
     WaE: unused parameter 'nType'

diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx
index 91971e6..08c01ae 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 ? ...

Just a reminder that in C++, the preferred way to silence warnings about legitimately unused parameters (like in this case of a virtual function override) is to just remove the parameter name from the function definition,

  bool AndroidSalInstance::AnyInput( sal_uInt16 )
  { ...

(see <http://wiki.services.openoffice.org/wiki/Writing_warning-free_code#Unused_parameters>).

Stephan

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.