diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2011-05-09 02:42:44 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2011-05-09 02:42:44 (GMT) |
commit | a8fdea9460ffd4814240543b0fd340aee593db85 (patch) | |
tree | c5d47934cc31ff2a67a02ce79f6946784d080826 /src | |
parent | 582be247290fd015798b3d84d692c0236dbff4e1 (diff) | |
download | Qt-a8fdea9460ffd4814240543b0fd340aee593db85.zip Qt-a8fdea9460ffd4814240543b0fd340aee593db85.tar.gz Qt-a8fdea9460ffd4814240543b0fd340aee593db85.tar.bz2 |
Augment documentation
Change-Id: I3469c63207d4ca75c5f942dc3fa84c5a71ceb3a2
Task-number: QTBUG-19112
Reviewed-by: Martin Jones
Diffstat (limited to 'src')
-rw-r--r-- | src/declarative/qml/qdeclarativeengine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/declarative/qml/qdeclarativeengine.cpp b/src/declarative/qml/qdeclarativeengine.cpp index 3cb2112..aa4bcd4 100644 --- a/src/declarative/qml/qdeclarativeengine.cpp +++ b/src/declarative/qml/qdeclarativeengine.cpp @@ -1326,6 +1326,8 @@ Example (where \c parentItem is the id of an existing QML item): In the case of an error, a QtScript Error object is thrown. This object has an additional property, \c qmlErrors, which is an array of the errors encountered. Each object in this array has the members \c lineNumber, \c columnNumber, \c fileName and \c message. +For example, if the above snippet had misspelled color as 'colro' then the array would contain an object like the following: +{ "lineNumber" : 1, "columnNumber" : 32, "fileName" : "dynamicSnippet1", "message" : "Cannot assign to non-existent property \"colro\""}. Note that this function returns immediately, and therefore may not work if the \a qml string loads new components (that is, external QML files that have not yet been loaded). |