summaryrefslogtreecommitdiffstats
path: root/unodevtools/source/skeletonmaker/javatypemaker.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools/source/skeletonmaker/javatypemaker.cxx')
-rw-r--r--unodevtools/source/skeletonmaker/javatypemaker.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unodevtools/source/skeletonmaker/javatypemaker.cxx b/unodevtools/source/skeletonmaker/javatypemaker.cxx
index e097b831be90..ec60403064c6 100644
--- a/unodevtools/source/skeletonmaker/javatypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/javatypemaker.cxx
@@ -493,7 +493,7 @@ void printMethods(std::ostream & o,
}
} else {
o << "\n" << indentation << "{\n" << indentation
- << " return " << delegate.getStr() << "get" << i->name
+ << " return " << delegate << "get" << i->name
<< "();\n" << indentation << "}\n\n";
}
} else {
@@ -516,7 +516,7 @@ void printMethods(std::ostream & o,
}
} else {
o << "\n" << indentation << "{\n" << indentation
- << " " << delegate.getStr() << "set" << i->name
+ << " " << delegate << "set" << i->name
<< "(the_value);\n" << indentation << "}\n\n";
}
} else {
@@ -559,7 +559,7 @@ void printMethods(std::ostream & o,
if (i->returnType != "void") {
o << "return ";
}
- o << delegate.getStr() << i->name << '(';
+ o << delegate << i->name << '(';
printMethodParameters(
o, options, manager, i->parameters, false);
o << ");\n" << indentation << "}\n\n";