Run linter

This commit is contained in:
Lasath Fernando 2020-04-30 22:40:27 -07:00
parent 21b33363ce
commit 166ed0674d
1 changed files with 4 additions and 3 deletions

View File

@ -124,7 +124,8 @@ class TimelineModel : public QAbstractListModel
Q_PROPERTY(std::vector<QString> typingUsers READ typingUsers WRITE updateTypingUsers NOTIFY
typingUsersChanged)
Q_PROPERTY(QString reply READ reply WRITE setReply NOTIFY replyChanged RESET resetReply)
Q_PROPERTY(bool paginationInProgress READ paginationInProgress NOTIFY paginationInProgressChanged)
Q_PROPERTY(
bool paginationInProgress READ paginationInProgress NOTIFY paginationInProgressChanged)
public:
explicit TimelineModel(TimelineViewManager *manager,
@ -274,8 +275,8 @@ private:
QString room_id_;
QString prev_batch_token_;
bool isInitialSync = true;
bool decryptDescription = true;
bool isInitialSync = true;
bool decryptDescription = true;
bool m_paginationInProgress = false;
QString currentId;