From 64dab1c771bd04f4612679dd895d5d600c9ebcbc Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Mon, 7 Jan 2013 16:31:34 +0100 Subject: Fix warning about cast from ASCII. Change-Id: I5434ece3b1bd0c56ca4481a68dd67e914715bc28 Reviewed-by: David Faure (KDE) --- src/corelib/plugin/qlibrary_win.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/corelib') 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() -- cgit v1.2.3