summaryrefslogtreecommitdiff
path: root/unodevtools/source/skeletonmaker/javacompskeleton.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-11 08:42:49 +0200
committerNoel Grandin <noel@peralex.com>2015-08-11 09:48:18 +0200
commit286dfc2a720ea8bd6b26c10126202fa25a112e0f (patch)
tree4b179846f09fa0be53f9cd6e078b7d0b79b92392 /unodevtools/source/skeletonmaker/javacompskeleton.cxx
parent3553a5d3a899954c4db09e264d8faf07e817e564 (diff)
loplugin: defaultparams
Change-Id: I50ba6a836473961d952ed88e56532501469c5368
Diffstat (limited to 'unodevtools/source/skeletonmaker/javacompskeleton.cxx')
-rw-r--r--unodevtools/source/skeletonmaker/javacompskeleton.cxx4
1 files changed, 2 insertions, 2 deletions
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";