aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickimagebase.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-02-16 13:08:40 +0100
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-02-23 19:49:00 +0000
commitcb0243d5078dcd9cebb2ce89621e4912ff57cebf (patch)
tree2a1dab22261f7df0fea54f57228e79d27044ca50 /src/quick/items/qquickimagebase.cpp
parent4d417c7fbf8b9e00e260951e29cba16072272cc5 (diff)
Fix deprecation warnings about constructing QString from const char*.
types/qqmlmodelindexvaluetype.cpp: In static member function 'static QString QQmlModelIndexValueType::propertiesString(const QModelIndex&)': types/qqmlmodelindexvaluetype.cpp:47:56: warning: 'QString::QString(const char*)' is deprecated (declared at qstring.h:649) [-Wdeprecated-declarations] items/qquickimagebase.cpp: In member function 'virtual void QQuickImageBase::load()': items/qquickimagebase.cpp:213:49: warning: 'QString::QString(const char*)' is deprecated (declared at qstring.h:649) [-Wdeprecated-declarations] items/qquickimagebase.cpp:213:88: warning: 'QString::QString(const char*)' is deprecated (declared at qstring.h:649) [-Wdeprecated-declarations] Change-Id: I03266aba589ade8228bc286cd3f3f237cd06a780 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@theqtcompany.com>
Diffstat (limited to 'src/quick/items/qquickimagebase.cpp')
-rw-r--r--src/quick/items/qquickimagebase.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/quick/items/qquickimagebase.cpp b/src/quick/items/qquickimagebase.cpp
index 688cf57441..951532e8b9 100644
--- a/src/quick/items/qquickimagebase.cpp
+++ b/src/quick/items/qquickimagebase.cpp
@@ -210,7 +210,8 @@ void QQuickImageBase::load()
QUrl loadUrl = d->url;
if (d->url.scheme() == QStringLiteral("image")
- || d->url.toString().endsWith(".svg") || d->url.toString().endsWith(".svgz")) {
+ || d->url.toString().endsWith(QLatin1String(".svg"))
+ || d->url.toString().endsWith(QLatin1String(".svgz"))) {
// QQuickImageProvider and SVG can generate a high resolution image when
// sourceSize is set. If sourceSize is not set then the provider default size
// will be used, as usual.