summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-01-07 16:31:34 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-01-07 16:53:39 +0100
commit64dab1c771bd04f4612679dd895d5d600c9ebcbc (patch)
treedefa390e7acb6cbbc929cd7bd7f58e324589a137 /src
parentfa77402089e6659fd404f09a7106f83b36b563e8 (diff)
Fix warning about cast from ASCII.
Change-Id: I5434ece3b1bd0c56ca4481a68dd67e914715bc28 Reviewed-by: David Faure (KDE) <faure@kde.org>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/plugin/qlibrary_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/plugin/qlibrary_win.cpp b/src/corelib/plugin/qlibrary_win.cpp
index ef3816a804..851543a3d8 100644
--- a/src/corelib/plugin/qlibrary_win.cpp
+++ b/src/corelib/plugin/qlibrary_win.cpp
@@ -60,7 +60,7 @@ extern QString qt_error_string(int code);
QStringList QLibraryPrivate::suffixes_sys(const QString& fullVersion)
{
Q_UNUSED(fullVersion);
- return QStringList() << ".dll";
+ return QStringList(QStringLiteral(".dll"));
}
QStringList QLibraryPrivate::prefixes_sys()