tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
equal deleted inserted replaced
27:93b982ccede2 31:5daf16870df6
       
     1 import Qt 4.7
       
     2 
       
     3 Item{
       
     4     height: 50; width: 200
       
     5     Column{
       
     6         //Not an exhaustive echo mode test, that's in QLineEdit (since the functionality is in QLineControl)
       
     7         TextInput{ id: main; focus: true; echoMode: TextInput.Password; passwordCharacter: '.' }
       
     8         Text{ text: main.text }
       
     9     }
       
    10 }