diff -r 5dc02b23752f -r 3e2da88830cd tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml Tue Jul 06 15:10:48 2010 +0300 +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml Wed Aug 18 10:37:55 2010 +0300 @@ -1,6 +1,12 @@ import Qt 4.7 Flickable { + property bool ok: false + function check() { + if (column.parent == contentItem) + ok = true; + } + width: 100; height: 100 contentWidth: column.width; contentHeight: column.height pressDelay: 200; boundsBehavior: Flickable.StopAtBounds; interactive: false