Index: sources/gui/qml/pages/treatment/TreatmentCreate.qml =================================================================== diff -u -rccb91da4becded9a7ad409b758bba96784d9feba -reefe8acbe5b10deb379c5e4ceabeaa95d429410e --- sources/gui/qml/pages/treatment/TreatmentCreate.qml (.../TreatmentCreate.qml) (revision ccb91da4becded9a7ad409b758bba96784d9feba) +++ sources/gui/qml/pages/treatment/TreatmentCreate.qml (.../TreatmentCreate.qml) (revision eefe8acbe5b10deb379c5e4ceabeaa95d429410e) @@ -28,19 +28,20 @@ */ ScreenItem { id: _root objectName: "TreatmentCreate"; // SquishQt testability - signal clickedBack() - signal clickedContinue() + signal backClicked() + signal continueClicked() function setInteractive(isInteractive) { _flickable.interactive = isInteractive } TopMenuBarCreateTreatment { id: _topMenuBar - anchors.top: parent.top - anchors.left: parent.left - width: parent.width - onClickedBack: { - _root.clickedBack(); + stepName : Variables.preTreatmentStepLabelCreate + anchors.top : parent.top + anchors.left : parent.left + width : parent.width + onBackClicked : { + _root.backClicked(); } } @@ -449,7 +450,7 @@ button.onClicked: { vTreatmentCreate.saveTreatmentProfile = false; if (vTreatmentCreate.continueEnabled) { - _root.clickedContinue() + _root.continueClicked() } }