summaryrefslogtreecommitdiff
path: root/configmgr/source/data.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/data.cxx')
-rw-r--r--configmgr/source/data.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/data.cxx b/configmgr/source/data.cxx
index 4f91d3b25612..6e95f1665726 100644
--- a/configmgr/source/data.cxx
+++ b/configmgr/source/data.cxx
@@ -77,9 +77,9 @@ bool decode(
}
OUString Data::createSegment(
- OUString const & templateName, OUString const & name)
+ std::u16string_view templateName, OUString const & name)
{
- if (templateName.isEmpty()) {
+ if (templateName.empty()) {
return name;
}
OUStringBuffer buf(128);