QML UI: fix typo in component id

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-05-28 02:23:03 -07:00
parent e255a698cb
commit a492b8bbd0

View file

@ -17,7 +17,7 @@ Kirigami.Page {
title: qsTr("Dive Computer") title: qsTr("Dive Computer")
DCDownloadThread { DCDownloadThread {
id: downlodaThread id: downloadThread
deviceData.vendor : comboVendor.currentText deviceData.vendor : comboVendor.currentText
deviceData.product : comboProduct.currentText deviceData.product : comboProduct.currentText
@ -73,7 +73,7 @@ Kirigami.Page {
text: qsTr("Download") text: qsTr("Download")
onClicked: { onClicked: {
text: qsTr("Retry") text: qsTr("Retry")
downlodaThread.start() downloadThread.start()
} }
} }
Button { Button {