diff options
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/qa/desktop_lib/test_desktop_lib.cxx | 2 | ||||
-rw-r--r-- | desktop/source/deployment/registry/component/dp_component.cxx | 2 | ||||
-rw-r--r-- | desktop/source/lib/init.cxx | 14 | ||||
-rw-r--r-- | desktop/source/pkgchk/unopkg/unopkg_misc.cxx | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx b/desktop/qa/desktop_lib/test_desktop_lib.cxx index 8a1d1c927c20..2aa81b3e3b88 100644 --- a/desktop/qa/desktop_lib/test_desktop_lib.cxx +++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx @@ -2821,7 +2821,7 @@ void DesktopLOKTest::testCalcSaveAs() void DesktopLOKTest::testSpellcheckerMultiView() { - static const OUStringLiteral aLangISO("en-US"); + static const OUStringLiteral aLangISO(u"en-US"); SvtSysLocaleOptions aSysLocaleOptions; aSysLocaleOptions.SetLocaleConfigString(aLangISO); aSysLocaleOptions.SetUILocaleConfigString(aLangISO); 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"; |