summaryrefslogtreecommitdiffstats
path: root/src/gui/image
diff options
context:
space:
mode:
authorMate Barany <mate.barany@qt.io>2022-09-15 16:08:08 +0200
committerMate Barany <mate.barany@qt.io>2022-09-21 14:00:37 +0200
commitec19ced7317a41b6c8e0319c37e4f5fc44e0a1e8 (patch)
treee27278067b2164140cea84c28dee0f47367c2a2b /src/gui/image
parent6f12603cb1ebf636852d972a304c0a6e752977df (diff)
QtGui: Fix mismatches between string types and string literals
This commit addresses some comments from the review of QTBUG-98434. Some strings were initialized with incorrect literal types - fix the mismatches between the string types and string literals. Task-number: QTBUG-103100 Change-Id: I5f9f8a2c1583c21711f7b9ff177917f20690b5a3 Reviewed-by: Marc Mutz <marc.mutz@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/gui/image')
-rw-r--r--src/gui/image/qiconloader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/image/qiconloader.cpp b/src/gui/image/qiconloader.cpp
index 6756826690..3464f41dbb 100644
--- a/src/gui/image/qiconloader.cpp
+++ b/src/gui/image/qiconloader.cpp
@@ -772,7 +772,7 @@ QPixmap QIconLoaderEngine::pixmap(const QSize &size, QIcon::Mode mode,
QString QIconLoaderEngine::key() const
{
- return "QIconLoaderEngine"_L1;
+ return u"QIconLoaderEngine"_s;
}
QString QIconLoaderEngine::iconName()