diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-10-23 02:45:47 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-10-23 02:48:53 (GMT) |
commit | 3386479da9526f0ae8978cd9e0afdd0559049ef9 (patch) | |
tree | 4a76e50347e64527621e96b7ceb4bfe25e0eeb24 /doc | |
parent | 4890660acfc55db4e4e79375d562e729935092bd (diff) | |
download | Qt-3386479da9526f0ae8978cd9e0afdd0559049ef9.zip Qt-3386479da9526f0ae8978cd9e0afdd0559049ef9.tar.gz Qt-3386479da9526f0ae8978cd9e0afdd0559049ef9.tar.bz2 |
Update ScriptAction and StateChangeScript to use QmlScriptString.
Now you can assign the script you want to run to the property directly,
rather than assigning a string.
Task-number: QT-734
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/declarative/qmlstates.qdoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/declarative/qmlstates.qdoc b/doc/src/declarative/qmlstates.qdoc index 955f7de..078b718 100644 --- a/doc/src/declarative/qmlstates.qdoc +++ b/doc/src/declarative/qmlstates.qdoc @@ -51,9 +51,9 @@ To animate state changes, you can use \l{state-transitions}{transitions}. Other things you can do in a state change: \list -\o override signal handlers -\o change an item's parent -\o change an item's anchors -\o run some script +\o override signal handlers with PropertyChanges +\o change an item's parent with ParentChange +\o change an item's anchors with AnchorChanges +\o run some script with StateChangeScript */ |