Remove quotes from id: properties

As suggested in the Qt Quick coding style
This commit is contained in:
miruka
2019-04-20 17:45:51 -04:00
parent 8f35e60801
commit c866ac87a9
16 changed files with 33 additions and 33 deletions

View File

@@ -9,17 +9,17 @@ ColumnLayout {
property var roomInfo:
Backend.models.rooms.get(userId).getWhere("roomId", roomId)
id: "chatPage"
id: chatPage
spacing: 0
onFocusChanged: sendBox.setFocus()
RoomHeader {
id: "roomHeader"
id: roomHeader
displayName: roomInfo.displayName
topic: roomInfo.topic
}
MessageList {}
TypingUsersBar {}
SendBox { id: "sendBox" }
SendBox { id: sendBox }
}