Index: sources/gui/qml/dialogs/Alert.qml =================================================================== diff -u -r666594860f4ea32da9a2bd362d40325b881b11f9 -r89e3ca8e108dd4b3315ae7862c631eba43f8fd0f --- sources/gui/qml/dialogs/Alert.qml (.../Alert.qml) (revision 666594860f4ea32da9a2bd362d40325b881b11f9) +++ sources/gui/qml/dialogs/Alert.qml (.../Alert.qml) (revision 89e3ca8e108dd4b3315ae7862c631eba43f8fd0f) @@ -25,7 +25,8 @@ * \brief Contains the Alert Dialog Implementation */ ModalDialog { id : _root - contentItem.objectName: "Alert" //SquishQt testability + objectName: "Alert" // SquishQt testability + contentItem.objectName: "AlertContent" Rectangle { id: _titleBar; color: "transparent"; @@ -81,6 +82,7 @@ } TouchRect { id: _confirm + objectName: "AlertConfirmButton" width: _root.width / 3; text.text: qsTr("CONFIRM") button.onPressed: { @@ -90,6 +92,7 @@ } TouchRect { id: _cancel + objectName: "AlertCancelButton" width: _root.width / 3; text.text: qsTr("CANCEL") button.onPressed: {