Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / qdeclarativetextinput / usingLineEdit.qml
1 import QtQuick 1.0
2
3 Rectangle{
4     width: 600
5     height: 200
6     Column {
7         LineEdit {text: 'Hello world'}
8         LineEdit {text: 'Hello underwhelmingly verbose world'; width: 80; height: 24;}
9     }
10 }