~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/qml/qqmlecmascript/data/propertyVar.9.qml

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import Qt.test 1.0
 
3
 
 
4
Item {
 
5
    property bool test: false
 
6
 
 
7
    MyQmlObject {
 
8
        id: qmlobject
 
9
        intProperty: 5
 
10
    }
 
11
    property var qobjectVar: qmlobject
 
12
    property int bound: qobjectVar.intProperty
 
13
 
 
14
    Component.onCompleted: {
 
15
        if (bound != 5) return;
 
16
 
 
17
        test = true;
 
18
    }
 
19
}