aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml
blob: 758717ea2bf47fe402812ab2e7d1f67eb217d1a6 (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;}
    }
}