summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-02-07 23:21:27 +0100
committerStephan Bergmann <sbergman@redhat.com>2022-02-08 09:09:32 +0100
commitb01e0483ee14826057c42dfa58c3d6200a474791 (patch)
treedf3602677ecf67edb532216fd767e63a347d6ac0 /unodevtools
parentb314b5a0612c9dc7279039dae44a250d4d3ec6b1 (diff)
Extend loplugin:stringview to O[U]StringBuffer::toString
Change-Id: I7ad212dfff8b34d05e3b45107a1ef033a4efc454 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129651 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/cppcompskeleton.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
index c7dbbf73451d..301aebff8906 100644
--- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx
@@ -661,7 +661,7 @@ static OString generateClassDefinition(std::ostream& o,
"css::uno::RuntimeException);\n";
OStringBuffer buffer(256);
- buffer.append(parentname.toString());
+ buffer.append(parentname);
buffer.append("< ");
std::set< OUString >::const_iterator iter = interfaces.begin();
while (iter != interfaces.end())