diff -r 90f927b4b9e1 -r 0c6fb706f747 qmlfrontend/Page1Form.ui.qml --- a/qmlfrontend/Page1Form.ui.qml Fri Dec 22 23:59:03 2017 +0100 +++ b/qmlfrontend/Page1Form.ui.qml Sun Dec 24 00:44:16 2017 +0100 @@ -3,7 +3,6 @@ import QtQuick.Layouts 1.3 Item { - property alias textField1: textField1 property alias button1: button1 RowLayout { @@ -11,14 +10,9 @@ anchors.topMargin: 20 anchors.top: parent.top - TextField { - id: textField1 - placeholderText: qsTr("Text Field") - } - Button { id: button1 - text: qsTr("Press Me") + text: qsTr("Run") } } }