mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 12:38: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"
|
#include "mtx/responses/profile.hpp"
|
||||||
|
|
||||||
InviteesModel::InviteesModel(TimelineModel *room, QObject *parent)
|
InviteesModel::InviteesModel(TimelineModel *room, QObject *parent)
|
||||||
: QAbstractListModel{parent},
|
: QAbstractListModel{parent}
|
||||||
room_{room}
|
, room_{room}
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ class InviteesModel final : public QAbstractListModel
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
Q_PROPERTY(int count READ rowCount NOTIFY countChanged)
|
Q_PROPERTY(int count READ rowCount NOTIFY countChanged)
|
||||||
Q_PROPERTY(TimelineModel * room READ room CONSTANT)
|
Q_PROPERTY(TimelineModel *room READ room CONSTANT)
|
||||||
|
|
||||||
public:
|
public:
|
||||||
enum Roles
|
enum Roles
|
||||||
|
|
Loading…
Reference in a new issue