From 3a36cf434fb4a967c9ea767cb7ac5f4da0502a0d Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 25 Apr 2017 15:09:53 +0200 Subject: loplugin:checkunusedparams in configmgr and vcl Change-Id: I7226d01f38e6edaf3868d7267d9b02dbdbc9e5ba Reviewed-on: https://gerrit.libreoffice.org/36975 Tested-by: Jenkins Reviewed-by: Noel Grandin --- unodevtools/source/skeletonmaker/javacompskeleton.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unodevtools') diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx b/unodevtools/source/skeletonmaker/javacompskeleton.cxx index eff3d95e471d..dda025eee33c 100644 --- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx +++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx @@ -289,7 +289,7 @@ void generateXLocalizableBodies(std::ostream& o) { " return m_locale;\n }\n\n"; } -void generateXAddInBodies(std::ostream& o, ProgramOptions const &) +void generateXAddInBodies(std::ostream& o) { // com.sun.star.sheet.XAddIn: // getProgrammaticFuntionName @@ -515,7 +515,7 @@ void generateMethodBodies(std::ostream& o, generated.add(u2b(type)); continue; } else if (type == "com.sun.star.sheet.XAddIn") { - generateXAddInBodies(o, options); + generateXAddInBodies(o); generated.add(u2b(type)); // special handling of XLocalizable -> parent of XAddIn -- cgit