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 /src/declarative/QmlChanges.txt | |
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 'src/declarative/QmlChanges.txt')
-rw-r--r-- | src/declarative/QmlChanges.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/QmlChanges.txt b/src/declarative/QmlChanges.txt index 6a6c394..465ee9e 100644 --- a/src/declarative/QmlChanges.txt +++ b/src/declarative/QmlChanges.txt @@ -105,3 +105,4 @@ Script: now an intrinsic type in the language - bad: Item { resources: Script { ... } } Script: delay-loaded of the QML file until their source has been loaded (this only effects QML files loaded across the network.) Scope: declared properties shadow a property of the same name (was previously the reverse) +ScriptAction and StateChangeScript: the script property now takes script rather than a string containing script (script: doSomething() rather than script: "doSomething()") |