summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml
blob: ed8bc2c3a2cbe727690cae89ce6c94deb0add01e (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; passwordCharacter: '.' }
        Text{ text: main.text }
    }
}