summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml')
-rw-r--r--examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml b/examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml
index e7a37c2..07a0814 100644
--- a/examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml
+++ b/examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml
@@ -78,23 +78,23 @@ Rectangle {
states: [
State {
name: "opened"
- SetProperties {
+ PropertyChanges {
target: removeButton
width: 230
}
- SetProperties {
+ PropertyChanges {
target: text
opacity: 1
}
- SetProperties {
+ PropertyChanges {
target: confirmIcon
opacity: 1
}
- SetProperties {
+ PropertyChanges {
target: cancelIcon
opacity: 1
}
- SetProperties {
+ PropertyChanges {
target: trashIcon
opacity: 0
}