mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
make lint
This commit is contained in:
parent
24d401365e
commit
cf06ce846a
2 changed files with 3 additions and 3 deletions
|
@ -10,8 +10,8 @@
|
|||
#include "mtx/responses/profile.hpp"
|
||||
|
||||
InviteesModel::InviteesModel(TimelineModel *room, QObject *parent)
|
||||
: QAbstractListModel{parent},
|
||||
room_{room}
|
||||
: QAbstractListModel{parent}
|
||||
, room_{room}
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue