Augment Documentation
authorAlan Alpert <alan.alpert@nokia.com>
Mon, 9 May 2011 02:48:21 +0000 (12:48 +1000)
committerAlan Alpert <alan.alpert@nokia.com>
Mon, 9 May 2011 02:56:52 +0000 (12:56 +1000)
Task-number: QTBUG-19112
Reviewed-by: Martin Jones
src/declarative/qml/qdeclarativeengine.cpp

index ba0ddbb..2ed1080 100644 (file)
@@ -1350,6 +1350,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).