author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Mon, 04 Oct 2010 01:19:32 +0300 | |
changeset 37 | 758a864f9613 |
parent 30 | 5dc02b23752f |
permissions | -rw-r--r-- |
import Qt.test 1.0 import Qt 4.7 MyQmlObject { property real base: 50 property alias test1: myObject.test1 property alias test2: myObject.test2 objectProperty: QtObject { id: myObject property real test1: base property real test2: Math.max(0, base) } // Signal with no args onBasicSignal: base = 200 // Signal with args onArgumentSignal: base = 400 }