diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-11-09 02:37:16 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-11-09 02:37:16 (GMT) |
commit | c45309cd037d099dd23e4bce8c5a7d1d41d5ceaa (patch) | |
tree | f99c0d88793d88459da24c3cd079646f9fc5a93e /src/declarative/qml/qmlinfo.cpp | |
parent | 2e72795565ac73b95ada86a461735cbe8b7721ad (diff) | |
download | Qt-c45309cd037d099dd23e4bce8c5a7d1d41d5ceaa.zip Qt-c45309cd037d099dd23e4bce8c5a7d1d41d5ceaa.tar.gz Qt-c45309cd037d099dd23e4bce8c5a7d1d41d5ceaa.tar.bz2 |
constness fix
Diffstat (limited to 'src/declarative/qml/qmlinfo.cpp')
-rw-r--r-- | src/declarative/qml/qmlinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlinfo.cpp b/src/declarative/qml/qmlinfo.cpp index f62f5fd..5ebcd8d 100644 --- a/src/declarative/qml/qmlinfo.cpp +++ b/src/declarative/qml/qmlinfo.cpp @@ -47,7 +47,7 @@ QT_BEGIN_NAMESPACE /*! - \fn void qmlInfo(const QString& message, QObject *object) + \fn void qmlInfo(const QString& message, const QObject *object) \brief Prints warnings messages that include the file and line number for QML types. @@ -73,7 +73,7 @@ QT_BEGIN_NAMESPACE \endcode */ -void qmlInfo(const QString& msg, QObject* object) +void qmlInfo(const QString& msg, const QObject* object) { QString pos = QLatin1String("QML"); if (object) { |