diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-02-26 07:04:38 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-02-26 07:04:38 (GMT) |
commit | e1f33f2e4689a59de2814ffdea7ea246bbfe0283 (patch) | |
tree | e3a0d74f5e54f78b83d0c05d6e1588c5f1d47e37 /src/declarative/QmlChanges.txt | |
parent | 93b02976b7c9c3a36cac475c1935622ebc2f1fe1 (diff) | |
download | Qt-e1f33f2e4689a59de2814ffdea7ea246bbfe0283.zip Qt-e1f33f2e4689a59de2814ffdea7ea246bbfe0283.tar.gz Qt-e1f33f2e4689a59de2814ffdea7ea246bbfe0283.tar.bz2 |
Change Connection syntax as per QT-2822.
Diffstat (limited to 'src/declarative/QmlChanges.txt')
-rw-r--r-- | src/declarative/QmlChanges.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/declarative/QmlChanges.txt b/src/declarative/QmlChanges.txt index 25e0088..34e4834 100644 --- a/src/declarative/QmlChanges.txt +++ b/src/declarative/QmlChanges.txt @@ -7,6 +7,11 @@ Flickable: renamed viewportX -> contentX Flickable: renamed viewportY -> contentY Removed Flickable.reportedVelocitySmoothing Renamed MouseRegion -> MouseArea +Connection: syntax and rename: + Connection { sender: a; signal: foo(); script: xxx } + Connection { sender: a; signal: bar(); script: yyy } + becomes: + Connections { target: a; onFoo: xxx; onBar: yyy } QmlView ------- |