aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/extras/drawer/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/extras/drawer/main.qml')
-rw-r--r--examples/quick/extras/drawer/main.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/quick/extras/drawer/main.qml b/examples/quick/extras/drawer/main.qml
index 55385a6a..8e36dc68 100644
--- a/examples/quick/extras/drawer/main.qml
+++ b/examples/quick/extras/drawer/main.qml
@@ -119,21 +119,21 @@ ApplicationWindow {
text: "Overlay"
checked: true
width: parent.width
- Exclusive.group: effect
+ ExclusiveGroup.group: effect
layoutDirection: Qt.RightToLeft
}
RadioButton {
id: push
text: "Push"
width: parent.width
- Exclusive.group: effect
+ ExclusiveGroup.group: effect
layoutDirection: Qt.RightToLeft
}
RadioButton {
id: uncover
text: "Uncover"
width: parent.width
- Exclusive.group: effect
+ ExclusiveGroup.group: effect
layoutDirection: Qt.RightToLeft
}
Rectangle { width: parent.width; height: 1; color: Theme.frameColor }