summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-11 02:35:09 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-11 02:35:09 +0300
commit0770f6e6b5099602def4966174ece8789996a78c (patch)
treece5bfb297d0af8c485019aa548a140bbc58e1414 /include
parentAllow message text selection (diff)
downloadnheko-0770f6e6b5099602def4966174ece8789996a78c.tar.xz
Make the timer single shot
Diffstat (limited to 'include')
-rw-r--r--include/ChatPage.h1
-rw-r--r--include/MatrixClient.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/ChatPage.h b/include/ChatPage.h

index d53d1a7f..4ee7441b 100644 --- a/include/ChatPage.h +++ b/include/ChatPage.h
@@ -57,6 +57,7 @@ public slots: void fetchRoomAvatar(const QString &roomid, const QUrl &avatar_url); void initialSyncCompleted(const SyncResponse &response); void syncCompleted(const SyncResponse &response); + void syncFailed(const QString &msg); void changeTopRoomInfo(const RoomInfo &info); void sendTextMessage(const QString &msg); void messageSent(const QString event_id, int txn_id); diff --git a/include/MatrixClient.h b/include/MatrixClient.h
index ae67af3a..decd14ff 100644 --- a/include/MatrixClient.h +++ b/include/MatrixClient.h
@@ -67,6 +67,7 @@ signals: void getOwnProfileResponse(const QUrl &avatar_url, const QString &display_name); void initialSyncCompleted(const SyncResponse &response); void syncCompleted(const SyncResponse &response); + void syncFailed(const QString &msg); void messageSent(const QString &event_id, const int txn_id); private slots: