summaryrefslogtreecommitdiff
path: root/unoidl/source/unoidl-check.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoidl/source/unoidl-check.cxx')
-rw-r--r--unoidl/source/unoidl-check.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unoidl/source/unoidl-check.cxx b/unoidl/source/unoidl-check.cxx
index a3cade0b0334..58b179ea41b0 100644
--- a/unoidl/source/unoidl-check.cxx
+++ b/unoidl/source/unoidl-check.cxx
@@ -174,7 +174,7 @@ void checkMap(
OUString name(prefix + id);
if (entA->getSort() == unoidl::Entity::SORT_MODULE) {
checkMap(
- providerB, OUString(name + "."),
+ providerB, OUStringConcatenation(name + "."),
(static_cast<unoidl::ModuleEntity *>(entA.get())
->createCursor()),
ignoreUnpublished);
@@ -920,7 +920,7 @@ void checkIds(
switch (entB->getSort()) {
case unoidl::Entity::SORT_MODULE:
checkIds(
- providerA, OUString(name + "."),
+ providerA, OUStringConcatenation(name + "."),
(static_cast<unoidl::ModuleEntity *>(entB.get())
->createCursor()));
break;