summaryrefslogtreecommitdiffstats
path: root/app/Recents.qml
diff options
context:
space:
mode:
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
}