aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/TabBar.qml
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 /src/imports/controls/TabBar.qml
parent1c0edf002a50a765a66349d733cf170f4a4024ef (diff)
Rename Style to Theme
Change-Id: I0186cd36f0b42ca015b70a09af27f8a3517d4a60 Reviewed-by: Jari-Pekka Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/TabBar.qml')
-rw-r--r--src/imports/controls/TabBar.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/imports/controls/TabBar.qml b/src/imports/controls/TabBar.qml
index 6d833485..0bf99508 100644
--- a/src/imports/controls/TabBar.qml
+++ b/src/imports/controls/TabBar.qml
@@ -98,7 +98,7 @@ AbstractTabBar {
height: 4
width: parent.width
y: parent.height - height
- color: control.Style.accentColor
+ color: control.Theme.accentColor
}
}
}
@@ -107,14 +107,14 @@ AbstractTabBar {
implicitWidth: 26
implicitHeight: 26
width: listView.width
- border.color: control.Style.backgroundColor
+ border.color: control.Theme.backgroundColor
border.width: 8
- color: listView.count > 1 ? control.Style.frameColor : control.Style.backgroundColor
+ color: listView.count > 1 ? control.Theme.frameColor : control.Theme.backgroundColor
Rectangle {
y: parent.height - height
width: parent.width
height: 1
- color: control.Style.frameColor
+ color: control.Theme.frameColor
}
}
}