make lint

This commit is contained in:
Loren Burkholder 2023-02-27 09:08:26 -05:00
parent 24d401365e
commit cf06ce846a
2 changed files with 3 additions and 3 deletions

View file

@ -10,8 +10,8 @@
#include "mtx/responses/profile.hpp"
InviteesModel::InviteesModel(TimelineModel *room, QObject *parent)
: QAbstractListModel{parent},
room_{room}
: QAbstractListModel{parent}
, room_{room}
{
}

View file

@ -36,7 +36,7 @@ class InviteesModel final : public QAbstractListModel
Q_OBJECT
Q_PROPERTY(int count READ rowCount NOTIFY countChanged)
Q_PROPERTY(TimelineModel * room READ room CONSTANT)
Q_PROPERTY(TimelineModel *room READ room CONSTANT)
public:
enum Roles