Fix warning about cast from ASCII.

Change-Id: I5434ece3b1bd0c56ca4481a68dd67e914715bc28
Reviewed-by: David Faure (KDE) <faure@kde.org>
bb10
Friedemann Kleint 2013-01-07 16:31:34 +01:00 committed by The Qt Project
parent fa77402089
commit 64dab1c771
1 changed files with 1 additions and 1 deletions

View File

@ -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()