summaryrefslogtreecommitdiffstats
path: root/unodevtools/source/skeletonmaker/cpptypemaker.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools/source/skeletonmaker/cpptypemaker.cxx')
-rw-r--r--unodevtools/source/skeletonmaker/cpptypemaker.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unodevtools/source/skeletonmaker/cpptypemaker.cxx b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
index 1fdeabd15201..936b5841a479 100644
--- a/unodevtools/source/skeletonmaker/cpptypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
@@ -555,7 +555,7 @@ void printMethods(std::ostream & o,
}
} else {
o << "\n" << indentation << "{\n" << indentation << " return "
- << delegate.getStr() << "get" << i->name << "();\n"
+ << delegate << "get" << i->name << "();\n"
<< indentation << "}\n\n";
}
} else {
@@ -589,7 +589,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 {
@@ -638,7 +638,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";