Change all remaining QML file ids to "root"

This commit is contained in:
Tobias Fella
2023-09-05 16:46:58 +02:00
parent f7d2ffac66
commit de3072125e
31 changed files with 211 additions and 206 deletions

View File

@@ -9,7 +9,7 @@ import org.kde.kirigami 2.20 as Kirigami
import org.kde.neochat 1.0
Kirigami.Page {
id: locationsPage
id: root
required property var room
@@ -31,7 +31,7 @@ Kirigami.Page {
MapItemView {
model: LocationsModel {
id: locationsModel
room: locationsPage.room
room: root.room
}
delegate: LocationMapItem {
isLive: true
@@ -42,7 +42,7 @@ Kirigami.Page {
MapItemView {
model: LiveLocationsModel {
id: liveLocationsModel
room: locationsPage.room
room: root.room
}
delegate: LocationMapItem {}
}