summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml
blob: 24658660d0dbbe7fd60c89506b1f033be2e32208 (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.7

Rectangle{
    width: 600
    height: 200
    Column{
        LineEdit{text: 'Hello world'}
        LineEdit{text: 'Hello underwhelmingly verbose world'; width: 80; height: 24;}
    }
}