summaryrefslogtreecommitdiffstats
path: root/src/controls/GroupBox.qml
diff options
context:
space:
mode:
authorJens Bache-Wiig <jens.bache-wiig@digia.com>2013-04-10 17:07:04 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-13 11:40:36 +0200
commit88e867cbeedd9063a08b9c401a8e56d0fb43d17b (patch)
tree64d6dc06d1459f603cae0c343b6f27e80bf42252 /src/controls/GroupBox.qml
parentb58966fb5d95f63793495e667184462182a98532 (diff)
Remove StyleItem dependencies from controls
This is another step towards making controls work without the widgets module. Change-Id: I7066d79f42d90199cfd1a5d6f6ce6cf6cae381d6 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'src/controls/GroupBox.qml')
-rw-r--r--src/controls/GroupBox.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/GroupBox.qml b/src/controls/GroupBox.qml
index 91c358814..d67dc216a 100644
--- a/src/controls/GroupBox.qml
+++ b/src/controls/GroupBox.qml
@@ -138,7 +138,7 @@ Item {
property real contentHeight: content.childrenRect.height
/*! \internal */
- property Component __style: Qt.createComponent(Settings.THEME_PATH + "/GroupBoxStyle.qml", groupbox)
+ property Component style: Qt.createComponent(Settings.THEME_PATH + "/GroupBoxStyle.qml", groupbox)
/*! \internal */
default property alias data: content.data
@@ -166,7 +166,7 @@ Item {
onLoaded: item.z = -1
Loader {
id: styleLoader
- sourceComponent: __style
+ sourceComponent: groupbox.style
}
}