diff options
author | J-P Nurmi <jpnurmi@digia.com> | 2013-05-24 09:31:37 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-05-24 17:12:57 +0200 |
commit | 7adbdc017982aec8645e152c7891ea51f84ff8ee (patch) | |
tree | 6f5242608cdfbba0ac0669f16ba2d5b646f5f96d /src/controls/RadioButton.qml | |
parent | 5dc6a9d8e5c0c962009129cf35361412db1b8f96 (diff) | |
download | qtquickcontrols-7adbdc017982aec8645e152c7891ea51f84ff8ee.tar.gz |
Make QQuickSettings::style a property with a notifier signal
Change-Id: I9f1690524e29cd7fe0ab35be216aca9a6edd35ca
Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'src/controls/RadioButton.qml')
-rw-r--r-- | src/controls/RadioButton.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/RadioButton.qml b/src/controls/RadioButton.qml index 7fb4decd..963d085c 100644 --- a/src/controls/RadioButton.qml +++ b/src/controls/RadioButton.qml @@ -87,7 +87,7 @@ AbstractCheckable { \codeline Qt.createComponent("path/to/style.qml", radioButtonId); */ - style: Qt.createComponent(Settings.theme() + "/RadioButtonStyle.qml", radioButton) + style: Qt.createComponent(Settings.style + "/RadioButtonStyle.qml", radioButton) __cycleStatesHandler: function() { checked = !checked; } } |