Document API bug for QQmlContext::nameForObject()
authorMathias Hasselmann <mathias.hasselmann@kdab.com>
Wed, 12 Mar 2014 13:05:22 +0000 (14:05 +0100)
committerSimon Hausmann <simon.hausmann@theqtcompany.com>
Fri, 5 Jun 2015 08:37:37 +0000 (08:37 +0000)
QQmlContext::nameForObject() doesn't need a mutable QObject, therefore
the QObject argument should be marked as const.

Change-Id: Ib3cfe197cb4a615850771ccc303796a6c205873e
Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
src/qml/qml/qqmlcontext.h

index c714846..e69a2f8 100644 (file)
@@ -72,6 +72,7 @@ public:
     void setContextProperty(const QString &, QObject *);
     void setContextProperty(const QString &, const QVariant &);
 
+    // ### Qt 6: no need for a mutable object, this should become a const QObject pointer
     QString nameForObject(QObject *) const;
 
     QUrl resolvedUrl(const QUrl &);