From 286dfc2a720ea8bd6b26c10126202fa25a112e0f Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 11 Aug 2015 08:42:49 +0200 Subject: loplugin: defaultparams Change-Id: I50ba6a836473961d952ed88e56532501469c5368 --- unodevtools/source/skeletonmaker/javacompskeleton.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unodevtools/source/skeletonmaker/javacompskeleton.cxx') diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx b/unodevtools/source/skeletonmaker/javacompskeleton.cxx index 567916322b36..f51de585365b 100644 --- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx +++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx @@ -765,7 +765,7 @@ void generateClassDefinition(std::ostream& o, o << " // properties\n"; while (iter != properties.end()) { o << " protected "; - printType(o, options, manager, iter->type, false, false); + printType(o, options, manager, iter->type, false); o << " m_" << iter->name << ";\n"; ++iter; } @@ -775,7 +775,7 @@ void generateClassDefinition(std::ostream& o, o << " // attributes\n"; while (iter != attributes.end()) { o << " private "; - printType(o, options, manager, iter->type, false, false); + printType(o, options, manager, iter->type, false); o << " m_" << iter->name << " = "; printType(o, options, manager, iter->type, false, true); o <<";\n"; -- cgit