summaryrefslogtreecommitdiffstats
path: root/src/controls/Styles/Android/RadioButtonStyle.qml
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2014-08-08 13:48:31 +0200
committerJ-P Nurmi <jpnurmi@digia.com>2014-08-10 00:55:04 +0200
commitd2b2699e1419bdc99d53f16d01047fd1bf1e32ab (patch)
treede1baefc4f85b94073922f7cea55d2cecfd94801 /src/controls/Styles/Android/RadioButtonStyle.qml
parente5a9fea530e74c6d4a31e6ba9a3bb700df6df67a (diff)
Replace usage of Item.window with Window attached property
Change-Id: Ic33d645ba384697f761540e277507ad56617e2fb Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
Diffstat (limited to 'src/controls/Styles/Android/RadioButtonStyle.qml')
-rw-r--r--src/controls/Styles/Android/RadioButtonStyle.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/Styles/Android/RadioButtonStyle.qml b/src/controls/Styles/Android/RadioButtonStyle.qml
index b8447ad62..76b2c9b7c 100644
--- a/src/controls/Styles/Android/RadioButtonStyle.qml
+++ b/src/controls/Styles/Android/RadioButtonStyle.qml
@@ -63,7 +63,7 @@ Style {
pressed: control.pressed
checked: control.checked
focused: control.activeFocus
- window_focused: control.window && control.window.active
+ window_focused: control.Window.active
styleDef: panel.styleDef.CompoundButton_button
anchors.verticalCenter: parent.verticalCenter
}
@@ -74,7 +74,7 @@ Style {
pressed: control.pressed
focused: control.activeFocus
selected: control.checked
- window_focused: control.window && control.window.active
+ window_focused: control.Window.active
styleDef: panel.styleDef
anchors.fill: parent