tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml
changeset 30 5dc02b23752f
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
       
     1 import Qt 4.7
       
     2 
       
     3 Item {
       
     4     width: 400; height: 500;
       
     5     property int bindingWidth: text.width
       
     6     property int bindingHeight: text.height
       
     7 
       
     8     TextEdit {
       
     9         id: text
       
    10         anchors.fill: parent
       
    11     }
       
    12 }