aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/types/qqmlmodelindexvaluetype.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/qml/types/qqmlmodelindexvaluetype.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/qml/types/qqmlmodelindexvaluetype.cpp')
-rw-r--r--src/qml/types/qqmlmodelindexvaluetype.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/types/qqmlmodelindexvaluetype.cpp b/src/qml/types/qqmlmodelindexvaluetype.cpp
index 03ae05b4b5..a8900c686b 100644
--- a/src/qml/types/qqmlmodelindexvaluetype.cpp
+++ b/src/qml/types/qqmlmodelindexvaluetype.cpp
@@ -44,7 +44,7 @@ QString QQmlModelIndexValueType::propertiesString(const QModelIndex &idx)
return QLatin1String("()");
return QString(QLatin1String("(%1,%2,0x%3,%4(0x%5))"))
.arg(idx.row()).arg(idx.column()).arg(idx.internalId(), 0, 16)
- .arg(idx.model()->metaObject()->className()).arg(quintptr(idx.model()), 0, 16);
+ .arg(QLatin1String(idx.model()->metaObject()->className())).arg(quintptr(idx.model()), 0, 16);
}
/*!