1 2 3 4 5 6 7 8 9 10 11 12
import Qt 4.6 Item { property int a: 3 property int binding: myFunction(); property int binding2: myCompFunction(); function myCompFunction() { return a; } }