aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols2/wearable/qml/LauncherPage.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2017-03-13 11:55:43 +0100
committerJ-P Nurmi <jpnurmi@qt.io>2017-03-13 14:47:16 +0000
commitd1ac6e3dc8b6919bcba4278a4cef8cbfa83f30a1 (patch)
tree32099ee6e42e6c0993612b306776dd8e42e6e3ae /examples/quickcontrols2/wearable/qml/LauncherPage.qml
parent7e382538fad487204885025f43409e265d58788c (diff)
Wearable: move app-specific images into each app's own folder
Change-Id: Ie378f19a1ccfd962528f47263d03cac6bf7dc03f Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'examples/quickcontrols2/wearable/qml/LauncherPage.qml')
-rw-r--r--examples/quickcontrols2/wearable/qml/LauncherPage.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/quickcontrols2/wearable/qml/LauncherPage.qml b/examples/quickcontrols2/wearable/qml/LauncherPage.qml
index 9c82393f..e6c1b534 100644
--- a/examples/quickcontrols2/wearable/qml/LauncherPage.qml
+++ b/examples/quickcontrols2/wearable/qml/LauncherPage.qml
@@ -69,37 +69,37 @@ PathView {
model: ListModel {
ListElement {
title: qsTr("World Clock")
- icon: "../images/worldclock/watch.png"
+ icon: "WorldClock/images/watch.png"
page: "WorldClock/WorldClockPage.qml"
}
ListElement {
title: qsTr("Navigation")
- icon: "../images/navigation/route.png"
+ icon: "Navigation/images/route.png"
page: "Navigation/NavigationPage.qml"
}
ListElement {
title: qsTr("Weather")
- icon: "../images/weather/weather.png"
+ icon: "Weather/images/weather.png"
page: "Weather/WeatherPage.qml"
}
ListElement {
title: qsTr("Fitness")
- icon: "../images/fitness/fitness.png"
+ icon: "Fitness/images/fitness.png"
page: "Fitness/FitnessPage.qml"
}
ListElement {
title: qsTr("Notifications")
- icon: "../images/notifications/notifications.png"
+ icon: "Notifications/images/notifications.png"
page: "Notifications/NotificationsPage.qml"
}
ListElement {
title: qsTr("Alarm")
- icon: "../images/alarms/alarms.png"
+ icon: "Alarms/images/alarms.png"
page: "Alarms/AlarmsPage.qml"
}
ListElement {
title: qsTr("Settings")
- icon: "../images/settings/settings.png"
+ icon: "Settings/images/settings.png"
page: "Settings/SettingsPage.qml"
}
}