diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-03-12 07:39:20 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-03-12 07:39:20 (GMT) |
commit | f74c7f2399c0e427cdc715e09c8bac4813285627 (patch) | |
tree | 081b08770a43723c602bb91459e63f2ff501d787 /src/declarative/QmlChanges.txt | |
parent | a8e3d5b04607ef6d6ba37090526886bac286abb0 (diff) | |
parent | 9c671ca747f5f67489b8fd12b3c752d3e86a535d (diff) | |
download | Qt-f74c7f2399c0e427cdc715e09c8bac4813285627.zip Qt-f74c7f2399c0e427cdc715e09c8bac4813285627.tar.gz Qt-f74c7f2399c0e427cdc715e09c8bac4813285627.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Diffstat (limited to 'src/declarative/QmlChanges.txt')
-rw-r--r-- | src/declarative/QmlChanges.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/declarative/QmlChanges.txt b/src/declarative/QmlChanges.txt index 9d24601..13b1eee 100644 --- a/src/declarative/QmlChanges.txt +++ b/src/declarative/QmlChanges.txt @@ -9,6 +9,7 @@ Flickable: renamed viewportX -> contentX Flickable: renamed viewportY -> contentY Removed Flickable.reportedVelocitySmoothing Removed Qt.playSound (replaced by SoundEffect element) +Removed Qt.closestAngle (use RotationAnimation instead) Removed NumberFormatter Removed DateTimeFormatter (use Qt.formatDateTime() instead) Renamed MouseRegion -> MouseArea @@ -18,6 +19,8 @@ Connection: syntax and rename: becomes: Connections { target: a; onFoo: xxx; onBar: yyy } Using WebView now requires "import org.webkit 1.0" +Using Particles now requires "import Qt.labs.particles 1.0" +AnchorAnimation must now be used to animate anchor changes (and not NumberAnimation) QmlView ------- @@ -49,9 +52,12 @@ C++ API QML_DEFINE_... definition macros, previously global macros, are replaced by QML_REGISTER_... registration macros, which must be called explicitly. C++ API users should also consider using the QmlExtensionPlugin (previously named QmlModulePlugin) -as a cleaner mechanism for publishing libraries of QML types, or the upcoming +as a cleaner mechanism for publishing libraries of QML types, or the upcoming application plugin features of the qmlviewer / qmlruntime / qml. +QDeclarativeContext::addDefaultObject() has been replaced with +QDeclarativeContext::setContextObject() + PropertyAnimation ------------------ matchProperties and matchTargets have been renamed back to properties and targets. |