aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlproperty.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlproperty.cpp')
-rw-r--r--src/qml/qml/qqmlproperty.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/qml/qml/qqmlproperty.cpp b/src/qml/qml/qqmlproperty.cpp
index 4f445948ba..a2bd3742aa 100644
--- a/src/qml/qml/qqmlproperty.cpp
+++ b/src/qml/qml/qqmlproperty.cpp
@@ -1074,9 +1074,9 @@ Return the \a name property value of \a object. This method is equivalent to:
p.read();
\endcode
*/
-QVariant QQmlProperty::read(QObject *object, const QString &name)
+QVariant QQmlProperty::read(const QObject *object, const QString &name)
{
- QQmlProperty p(object, name);
+ QQmlProperty p(const_cast<QObject *>(object), name);
return p.read();
}
@@ -1090,9 +1090,9 @@ QVariant QQmlProperty::read(QObject *object, const QString &name)
p.read();
\endcode
*/
-QVariant QQmlProperty::read(QObject *object, const QString &name, QQmlContext *ctxt)
+QVariant QQmlProperty::read(const QObject *object, const QString &name, QQmlContext *ctxt)
{
- QQmlProperty p(object, name, ctxt);
+ QQmlProperty p(const_cast<QObject *>(object), name, ctxt);
return p.read();
}
@@ -1107,9 +1107,9 @@ QVariant QQmlProperty::read(QObject *object, const QString &name, QQmlContext *c
p.read();
\endcode
*/
-QVariant QQmlProperty::read(QObject *object, const QString &name, QQmlEngine *engine)
+QVariant QQmlProperty::read(const QObject *object, const QString &name, QQmlEngine *engine)
{
- QQmlProperty p(object, name, engine);
+ QQmlProperty p(const_cast<QObject *>(object), name, engine);
return p.read();
}