summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml
blob: 318af0f7f96ce037f88f2c49dc59b5e8e92ffc03 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

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