lineEdit: add textUpdated signal

pull/2/head
Jaquee 8 years ago
parent de14886376
commit bded77a22b
No known key found for this signature in database
GPG Key ID: 384E52B09F45DC39

@ -39,6 +39,7 @@ Item {
property bool error: false
signal editingFinished()
signal accepted();
signal textUpdated();
height: 37
@ -71,5 +72,6 @@ Item {
font.pixelSize: parent.fontSize
onEditingFinished: item.editingFinished()
onAccepted: item.accepted();
onTextChanged: item.textUpdated()
}
}