summaryrefslogtreecommitdiff
path: root/unodevtools/source/skeletonmaker/javacompskeleton.cxx
diff options
context:
space:
mode:
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";