summaryrefslogtreecommitdiffstats
path: root/src/corelib/text
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2022-04-29 14:09:38 +0200
committerSona Kurazyan <sona.kurazyan@qt.io>2022-05-02 12:23:44 +0200
commit17e06afdc3a783ec9c9e317e6f160e82db0bd5cd (patch)
treec156386ebe8eabc037c113f7e53ac9f9ba4d17c9 /src/corelib/text
parent40ba4b24375686ae419c7b579a497ac83246e0dc (diff)
Replace remaining uses of deprecated _qs with _s
Task-number: QTBUG-101408 Change-Id: I1fda67c07e948af5017f0b99b67f8c20d7052033 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'src/corelib/text')
-rw-r--r--src/corelib/text/qlocale_unix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/text/qlocale_unix.cpp b/src/corelib/text/qlocale_unix.cpp
index eec718ae9b..c5a60210cf 100644
--- a/src/corelib/text/qlocale_unix.cpp
+++ b/src/corelib/text/qlocale_unix.cpp
@@ -283,7 +283,7 @@ QVariant QSystemLocale::query(QueryType type, QVariant in) const
for (int i = 0; i < lst.size(); ++i) {
QStringView language, script, territory;
if (qt_splitLocaleName(lst.at(i), &language, &script, &territory)) {
- QString joined = language.isEmpty() ? u"und"_qs : language.toString();
+ QString joined = language.isEmpty() ? u"und"_s : language.toString();
if (!script.isEmpty())
joined += u'-' + script;
if (!territory.isEmpty())