aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/subscriptions.1.qml
blob: 607233819ed81a45c7b91e308389afb0126396ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0

Rectangle {
    id: root
    width: 400
    height: 400

    property real targetHeight: menuItems.height + 1
    property real heightValue: if (1) menuItems.height      //this must be v8?
    property bool boolProp: menuItems.height > heightValue  //this must be v4?

    Column {
        id: menuItems
        Item { height: 200; width: 10 }
    }
}