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

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 }
    }
}