diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-07-07 00:41:37 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-07-07 00:41:37 (GMT) |
commit | a73e903f523fe0ac15734c6fd37592145673a959 (patch) | |
tree | a43db7880e6785a77ae8d35fa0e6db6fe6461e4a | |
parent | 7d31d54a5fa9cea33013da490cd1dfa37c099fd8 (diff) | |
parent | bdae42967cd7fa9eb0182e1f25c1e743f35835f7 (diff) | |
download | Qt-a73e903f523fe0ac15734c6fd37592145673a959.zip Qt-a73e903f523fe0ac15734c6fd37592145673a959.tar.gz Qt-a73e903f523fe0ac15734c6fd37592145673a959.tar.bz2 |
Merge branch 'master' of git://scm.dev.nokia.troll.no/qt/qt-qml-team
* 'master' of git://scm.dev.nokia.troll.no/qt/qt-qml-team:
qmlplugindump: Update qmltypes file format documentation.
-rw-r--r-- | doc/src/declarative/modules.qdoc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/src/declarative/modules.qdoc b/doc/src/declarative/modules.qdoc index 80d83a4..efca620 100644 --- a/doc/src/declarative/modules.qdoc +++ b/doc/src/declarative/modules.qdoc @@ -407,7 +407,7 @@ In case you have to create a qmltypes file manually or need to adjust an existing one, this is the file format: \qml -import QtQuick.tooling 1.0 +import QtQuick.tooling 1.1 // There always is a single Module object that contains all // Component objects. @@ -454,6 +454,8 @@ Module { isPointer: true // defaults to false: whether the type actually is a QDeclarativeListProperty<type> isList: true + // defaults to 0: the minor version that introduced this property + revision: 1 } Property { name: "loops"; type: "int" } Property { name: "name"; type: "string" } @@ -471,7 +473,7 @@ Module { // declarations also support the isReadonly, isPointer and isList // attributes which mean the same as for Property Method { name: "restart" } - Signal { name: "started" } + Signal { name: "started"; revision: 2 } Signal { name: "runningChanged" Parameter { type: "bool" } |