diff options
author | David Boddie <david.boddie@nokia.com> | 2010-12-21 19:21:47 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2010-12-21 19:21:47 (GMT) |
commit | 2143a50d274d36e4fe779de2c732c66f47496ace (patch) | |
tree | e707ef803ff047fb0f7b14dbf1474fb65f38c13a /src/declarative | |
parent | 75b4b1a99d1ea0f8549b188ec29a3a9103bc587a (diff) | |
download | Qt-2143a50d274d36e4fe779de2c732c66f47496ace.zip Qt-2143a50d274d36e4fe779de2c732c66f47496ace.tar.gz Qt-2143a50d274d36e4fe779de2c732c66f47496ace.tar.bz2 |
Doc: Fixed QML syntax in quoted code snippets.
Diffstat (limited to 'src/declarative')
-rw-r--r-- | src/declarative/util/qdeclarativeconnections.cpp | 8 | ||||
-rw-r--r-- | src/declarative/util/qdeclarativestateoperations.cpp | 20 |
2 files changed, 5 insertions, 23 deletions
diff --git a/src/declarative/util/qdeclarativeconnections.cpp b/src/declarative/util/qdeclarativeconnections.cpp index 15e5ac5..8b3a9da 100644 --- a/src/declarative/util/qdeclarativeconnections.cpp +++ b/src/declarative/util/qdeclarativeconnections.cpp @@ -82,7 +82,7 @@ public: \qml MouseArea { - onClicked: { foo(...) } + onClicked: { foo(parameters) } } \endqml @@ -103,7 +103,7 @@ public: \qml MouseArea { Connections { - onClicked: foo(...) + onClicked: foo(parameters) } } \endqml @@ -115,10 +115,10 @@ public: MouseArea { id: area } - ... + // ... Connections { target: area - onClicked: foo(...) + onClicked: foo(parameters) } \endqml diff --git a/src/declarative/util/qdeclarativestateoperations.cpp b/src/declarative/util/qdeclarativestateoperations.cpp index d1d7822..1df9013 100644 --- a/src/declarative/util/qdeclarativestateoperations.cpp +++ b/src/declarative/util/qdeclarativestateoperations.cpp @@ -599,25 +599,7 @@ public: ScriptAction to specify the point in the transition at which the StateChangeScript should to be run. - \qml - State { - name "state1" - StateChangeScript { - name: "myScript" - script: doStateStuff(); - } - ... - } - ... - Transition { - to: "state1" - SequentialAnimation { - NumberAnimation { ... } - ScriptAction { scriptName: "myScript" } - NumberAnimation { ... } - } - } - \endqml + \snippet snippets/declarative/states/statechangescript.qml state and transition \sa ScriptAction */ |