summaryrefslogtreecommitdiffstats
path: root/app/Recents.qml
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2024-11-19 14:01:11 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2024-11-19 14:01:22 +0100
commit513de36724cfd7f56babc5ce47466f6e46737f4c (patch)
treeb235eefacdf6a03d3f7aec7694b3dc842e82ec33 /app/Recents.qml
parent77c661a3653402614e3e8bd5c1d99d94c4d5a4b3 (diff)
Import the patches for the demo applications into the app repos. Bug-AGL: SPEC-5294 Change-Id: I741f34da3a424706fdd0763b80794d7750eb2570 Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'app/Recents.qml')
-rw-r--r--app/Recents.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Recents.qml b/app/Recents.qml
index 5a516a1..f4d771b 100644
--- a/app/Recents.qml
+++ b/app/Recents.qml
@@ -25,11 +25,11 @@ Item {
function log_icon(type) {
if (type === RecentCall.MISSED) {
- return './images/ic_call_missed_48px.svg'
+ return 'qrc:/images/ic_call_missed_48px.svg'
} else if (type === RecentCall.RECEIVED) {
- return './images/ic_call_received_48px.svg'
+ return 'qrc:/images/ic_call_received_48px.svg'
} else if (type === RecentCall.DIALED) {
- return './images/ic_call_made_48px.svg'
+ return 'qrc:/images/ic_call_made_48px.svg'
}
}
@@ -53,7 +53,7 @@ Item {
Layout.preferredHeight: 150
}
Image {
- source: './images/HMI_Phone_Contact_BlankPhoto.svg'
+ source: 'qrc:/images/HMI_Phone_Contact_BlankPhoto.svg'
Layout.preferredWidth: 150
Layout.preferredHeight: 150
}