From 908e85cc85d18f56575ee040589bcd5745c62adb Mon Sep 17 00:00:00 2001 From: Sona Kurazyan Date: Fri, 18 Mar 2022 10:31:16 +0100 Subject: Replace uses of _qs with _s in sources and examples Task-number: QTBUG-101408 Change-Id: I48360ba3b23965cd3d90ac243c100a0656a4cde8 Reviewed-by: Marc Mutz --- src/corelib/thread/qthreadpool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/corelib/thread/qthreadpool.cpp') diff --git a/src/corelib/thread/qthreadpool.cpp b/src/corelib/thread/qthreadpool.cpp index 72865d5872a..485e5b31504 100644 --- a/src/corelib/thread/qthreadpool.cpp +++ b/src/corelib/thread/qthreadpool.cpp @@ -279,7 +279,7 @@ void QThreadPoolPrivate::startThread(QRunnable *runnable) Q_ASSERT(runnable != nullptr); auto thread = std::make_unique(this); if (objectName.isEmpty()) - objectName = u"Thread (pooled)"_qs; + objectName = u"Thread (pooled)"_s; thread->setObjectName(objectName); Q_ASSERT(!allThreads.contains(thread.get())); // if this assert hits, we have an ABA problem (deleted threads don't get removed here) allThreads.insert(thread.get()); -- cgit v1.2.3