diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-11-19 14:01:11 +0100 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-11-19 14:01:22 +0100 |
commit | 513de36724cfd7f56babc5ce47466f6e46737f4c (patch) | |
tree | b235eefacdf6a03d3f7aec7694b3dc842e82ec33 /app/ContactsView.qml | |
parent | 77c661a3653402614e3e8bd5c1d99d94c4d5a4b3 (diff) |
Import Qt6 conversion patchHEADtrout_19.90.0trout/19.90.019.90.0master
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/ContactsView.qml')
-rw-r--r-- | app/ContactsView.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/ContactsView.qml b/app/ContactsView.qml index 66f2199..e9def44 100644 --- a/app/ContactsView.qml +++ b/app/ContactsView.qml @@ -18,7 +18,6 @@ import QtQuick 2.6 import QtQuick.Layouts 1.3 import QtQuick.Controls 2.0 -import QtQuick.Controls.Styles 1.4 import AGL.Demo.Controls 1.0 import PhoneNumber 1.0 @@ -77,7 +76,7 @@ Item { anchors.leftMargin: 200 spacing: 100 Image { - source: model.modelData.photo ? model.modelData.photo : './images/HMI_ContactScreen_ImageHolder-01.svg' + source: model.modelData.photo ? model.modelData.photo : 'qrc:/images/HMI_ContactScreen_ImageHolder-01.svg' Layout.preferredWidth: 160 Layout.preferredHeight: 160 } |