summaryrefslogtreecommitdiff
path: root/examples/quick/controls/touch/content/TabBarPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/controls/touch/content/TabBarPage.qml')
-rw-r--r--examples/quick/controls/touch/content/TabBarPage.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/controls/touch/content/TabBarPage.qml b/examples/quick/controls/touch/content/TabBarPage.qml
index c96314be..7651a3c1 100644
--- a/examples/quick/controls/touch/content/TabBarPage.qml
+++ b/examples/quick/controls/touch/content/TabBarPage.qml
@@ -80,11 +80,11 @@ Item {
anchors.fill: parent
border.bottom: 8
border.top: 8
- source: tab.selected ? "../images/tab_selected.png":"../images/tabs_standard.png"
+ source: styleData.selected ? "../images/tab_selected.png":"../images/tabs_standard.png"
Text {
anchors.centerIn: parent
color: "white"
- text: tab.title.toUpperCase()
+ text: styleData.title.toUpperCase()
font.pixelSize: 16
}
Rectangle {