aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/controls/mirroring
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-04-08 18:16:13 +0200
committerJari-Pekka Nurmi <jpnurmi@theqtcompany.com>2015-04-08 19:18:02 +0300
commit7b971c28e6098b629b8e9e3e38a9465a3f1bd459 (patch)
treec5c475894671c0cc7e38d59287d3c2d6ba46128b /examples/quick/controls/mirroring
parent1c0edf002a50a765a66349d733cf170f4a4024ef (diff)
Rename Style to Theme
Change-Id: I0186cd36f0b42ca015b70a09af27f8a3517d4a60 Reviewed-by: Jari-Pekka Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'examples/quick/controls/mirroring')
-rw-r--r--examples/quick/controls/mirroring/main.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/quick/controls/mirroring/main.qml b/examples/quick/controls/mirroring/main.qml
index 1bdf8cb2..3deb3cae 100644
--- a/examples/quick/controls/mirroring/main.qml
+++ b/examples/quick/controls/mirroring/main.qml
@@ -67,7 +67,7 @@ ApplicationWindow {
Label {
id: label
text: "Beyond the essentials."
- color: Style.accentColor
+ color: Theme.accentColor
anchors.fill: parent
anchors.margins: 48
horizontalAlignment: Text.AlignHCenter
@@ -89,7 +89,7 @@ ApplicationWindow {
width: parent.width
height: 1
anchors.bottom: parent.bottom
- color: Style.frameColor
+ color: Theme.frameColor
}
}
@@ -157,7 +157,7 @@ ApplicationWindow {
width: flow.width
Row {
width: parent.width
- spacing: Style.spacing
+ spacing: Theme.spacing
readonly property real availableWidth: (flow.width - 12) / 2
readonly property real contentWidth: okButton.implicitWidth + cancelButton.implicitWidth + 12
readonly property real buttonWidth: contentWidth > availableWidth ? (width / 2 - spacing) : (width / 2 - 2 * spacing) / 2
@@ -196,7 +196,7 @@ ApplicationWindow {
width: flow.width
Column {
width: parent.width
- spacing: Style.spacing
+ spacing: Theme.spacing
ProgressBar {
width: parent.width
indeterminate: true
@@ -213,7 +213,7 @@ ApplicationWindow {
width: flow.width
Column {
width: parent.width
- spacing: Style.spacing
+ spacing: Theme.spacing
Slider {
id: slider
value: 0.4