summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/chat/Search.qml
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2017-06-19 13:09:47 +0200
committerAlex Blasche <alexander.blasche@qt.io>2017-06-20 06:06:00 +0000
commit71f22ac56c744ed71ccc26423a9c7a08fc4eb4e6 (patch)
tree09e803eecf6bbc742b0d98e5fb74615faae50323 /examples/bluetooth/chat/Search.qml
parent4986d02c7b844f5fe920abf3932b8f9500e345eb (diff)
Properly handle disconnect socket event in QML chat example
Prior to this change the state transtion of the BluetoothSocket instance was not distinguishing between the varios state types. It always assumes any state transtion was a transition to "Connected". Change-Id: I584b6c467dc77ac0602562d6792c16bf357d831c Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
Diffstat (limited to 'examples/bluetooth/chat/Search.qml')
-rw-r--r--examples/bluetooth/chat/Search.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/bluetooth/chat/Search.qml b/examples/bluetooth/chat/Search.qml
index f1f8f6ac..ea542462 100644
--- a/examples/bluetooth/chat/Search.qml
+++ b/examples/bluetooth/chat/Search.qml
@@ -46,6 +46,9 @@ Rectangle {
function appendText(newText) {
searchText.text += newText
}
+ function setText(newText) {
+ searchText.text = newText
+ }
width: searchText.width + 40;
height: searchText.height + bluetoothImage.height + 40;