diff options
Diffstat (limited to 'stoc/source/inspect/introspection.cxx')
-rw-r--r-- | stoc/source/inspect/introspection.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/inspect/introspection.cxx b/stoc/source/inspect/introspection.cxx index c219e8030f0c..e6c44c4748ba 100644 --- a/stoc/source/inspect/introspection.cxx +++ b/stoc/source/inspect/introspection.cxx @@ -1441,8 +1441,8 @@ struct TypeKey { // those matches, too: OUStringBuffer b(static_cast<int>(theTypes.size() * 64)); for (const css::uno::Type& rType : theTypes) { - b.append(rType.getTypeName()); - b.append('*'); // arbitrary delimiter not used by type grammar + b.append(rType.getTypeName() + + "*"); // arbitrary delimiter not used by type grammar } types = b.makeStringAndClear(); } |