diff options
author | 2024-11-19 14:01:11 +0100 | |
---|---|---|
committer | 2024-11-19 14:01:22 +0100 | |
commit | 513de36724cfd7f56babc5ce47466f6e46737f4c (patch) | |
tree | b235eefacdf6a03d3f7aec7694b3dc842e82ec33 /app/Phone.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/Phone.qml')
-rw-r--r-- | app/Phone.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Phone.qml b/app/Phone.qml index 6b38f77..6de54f2 100644 --- a/app/Phone.qml +++ b/app/Phone.qml @@ -41,19 +41,19 @@ ApplicationWindow { contentHeight: 160 TabImageButton { - icon: "./images/ic_contacts_48px.svg" + iconSource: "qrc:/images/ic_contacts_48px.svg" text: "Contacts" font.pixelSize: 50 } TabImageButton { - icon: "./images/ic_schedule_48px.svg" + iconSource: "qrc:/images/ic_schedule_48px.svg" text: "Recents" font.pixelSize: 50 } TabImageButton { - icon: "./images/ic_dialpad_48px.svg" + iconSource: "qrc:/images/ic_dialpad_48px.svg" text: "Dialpad" font.pixelSize: 50 } |