Correct example snippet in QML positioner documentation
authorAlan Alpert <alan.alpert@nokia.com>
Wed, 29 Jun 2011 08:05:46 +0000 (18:05 +1000)
committerQt by Nokia <qt-info@nokia.com>
Thu, 30 Jun 2011 04:23:18 +0000 (06:23 +0200)
Task-number: QTBUG-19928
Change-Id: I0fd0f07525bbc1e08edaa636beee9f9ff4b8ad1b
Reviewed-on: http://codereview.qt.nokia.com/869
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
src/declarative/graphicsitems/qdeclarativepositioners.cpp

index 3f4d6de..3d9e510 100644 (file)
@@ -419,7 +419,7 @@ void QDeclarativeBasePositioner::finishApplyTransitions()
         move: Transition {
             NumberAnimation {
                 properties: "y"
-                easing.type: Easing.OutBounce
+                duration: 1000
             }
         }
     }
@@ -561,7 +561,7 @@ void QDeclarativeColumn::reportConflictingAnchors()
         move: Transition {
             NumberAnimation {
                 properties: "x"
-                ease: "easeOutBounce"
+                duration: 1000
             }
         }
     }
@@ -790,7 +790,7 @@ void QDeclarativeRow::reportConflictingAnchors()
         move: Transition {
             NumberAnimation {
                 properties: "x,y"
-                ease: "easeOutBounce"
+                duration: 1000
             }
         }
     }