summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/qmlgraphicstextinput/echoMode.qml
blob: b0b50e4420d133cc6f01d464e85d1a5853096a8e (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.6

Item{
    height: 50; width: 200
    Column{
        //Not an exhaustive echo mode test, that's in QLineEdit (since the functionality is in QLineControl)
        TextInput{ id: main; focus: true; echoMode: TextInput.Password }
        Text{ text: main.text }
    }
}