summaryrefslogtreecommitdiff
path: root/desktop/source
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source')
-rw-r--r--desktop/source/deployment/registry/component/dp_component.cxx2
-rw-r--r--desktop/source/lib/init.cxx14
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_misc.cxx2
3 files changed, 9 insertions, 9 deletions
diff --git a/desktop/source/deployment/registry/component/dp_component.cxx b/desktop/source/deployment/registry/component/dp_component.cxx
index 0ba485f30448..ce6951c4b89e 100644
--- a/desktop/source/deployment/registry/component/dp_component.cxx
+++ b/desktop/source/deployment/registry/component/dp_component.cxx
@@ -423,7 +423,7 @@ void BackendImpl::initServiceRdbFiles()
&oldRDB, makeURL( getCachePath(), m_commonRDB_orig),
xCmdEnv, false /* no throw */ );
}
- m_commonRDB = m_commonRDB_orig == "common.rdb" ? OUStringLiteral("common_.rdb") : OUStringLiteral("common.rdb");
+ m_commonRDB = m_commonRDB_orig == "common.rdb" ? OUStringLiteral(u"common_.rdb") : OUStringLiteral(u"common.rdb");
if (oldRDB.get().is())
{
cacheDir.transferContent(
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index d7ac2603fab8..7d66c0fcdfc6 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -3702,13 +3702,13 @@ static void doc_sendDialogEvent(LibreOfficeKitDocument* /*pThis*/, unsigned long
if (aMap.find("id") == aMap.end())
return;
- static const OUStringLiteral sClickAction("CLICK");
- static const OUStringLiteral sSelectAction("SELECT");
- static const OUStringLiteral sClearAction("CLEAR");
- static const OUStringLiteral sTypeAction("TYPE");
- static const OUStringLiteral sUpAction("UP");
- static const OUStringLiteral sDownAction("DOWN");
- static const OUStringLiteral sValue("VALUE");
+ static const OUStringLiteral sClickAction(u"CLICK");
+ static const OUStringLiteral sSelectAction(u"SELECT");
+ static const OUStringLiteral sClearAction(u"CLEAR");
+ static const OUStringLiteral sTypeAction(u"TYPE");
+ static const OUStringLiteral sUpAction(u"UP");
+ static const OUStringLiteral sDownAction(u"DOWN");
+ static const OUStringLiteral sValue(u"VALUE");
bool bIsWeldedDialog = false;
diff --git a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
index ecbb122f8dd1..04b56bf46c61 100644
--- a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
+++ b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
@@ -259,7 +259,7 @@ void printf_package(
if (reg.IsAmbiguous)
value = "unknown";
else
- value = reg.Value ? OUStringLiteral("yes") : OUStringLiteral("no");
+ value = reg.Value ? OUStringLiteral(u"yes") : OUStringLiteral(u"no");
}
else
value = "n/a";