| 92 | } |
| 93 | |
| 94 | void RoomListModel::namesChanged(QMatrixClient::Room* room) |
| 95 | { |
| 96 | int row = m_rooms.indexOf(room); |
| 97 | emit dataChanged(index(row), index(row)); |
| 98 | } |
| 99 | |
| 100 | void RoomListModel::unreadMessagesChanged(QMatrixClient::Room* room) |
| 101 | { |
nothing calls this directly
no outgoing calls
no test coverage detected