diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-11-27 15:19:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-27 15:19:03 +0100 |
commit | d857b67f4168f97af5b4e4c5b31159fbd7854ea5 (patch) | |
tree | ab2703777aec96d0d95fc19aeb7f85ea351df338 /lib/connection.h | |
parent | 21554bccc39ab2f63869c244ed880686805887cb (diff) | |
parent | 7b2eb5b3a14dd198564658c143567b3eb7a879f6 (diff) | |
download | libquotient-d857b67f4168f97af5b4e4c5b31159fbd7854ea5.tar.gz libquotient-d857b67f4168f97af5b4e4c5b31159fbd7854ea5.zip |
Merge pull request #418 from ognarb/work/QT_NO_KEYWORDS
Make it compile with QT_NO_KEYWORDS
Diffstat (limited to 'lib/connection.h')
-rw-r--r-- | lib/connection.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/connection.h b/lib/connection.h index 6517b909..07ae9f29 100644 --- a/lib/connection.h +++ b/lib/connection.h @@ -497,7 +497,7 @@ public: setUserFactory(defaultUserFactory<T>()); } -public slots: +public Q_SLOTS: /** Set the homeserver base URL */ void setHomeserver(const QUrl& baseUrl); @@ -656,7 +656,7 @@ public slots: */ virtual PostReceiptJob* postReceipt(Room* room, RoomEvent* event); -signals: +Q_SIGNALS: /** * @deprecated * This was a signal resulting from a successful resolveServer(). @@ -853,7 +853,7 @@ protected: */ void onSyncSuccess(SyncData&& data, bool fromCache = false); -protected slots: +protected Q_SLOTS: void syncLoopIteration(); private: |