diff options
author | Josip Delic <delijati@googlemail.com> | 2018-09-17 11:45:45 +0200 |
---|---|---|
committer | Josip Delic <delijati@googlemail.com> | 2018-09-17 11:45:45 +0200 |
commit | c1a3dd719b735f7f77306d92baf5923df4fb0b10 (patch) | |
tree | dff86e2cc3d1c42233f70b6c0f09b0db307d7513 /lib/room.h | |
parent | 8837f87bd94f4daa20a7645a1c4ba0dafe842001 (diff) | |
download | libquotient-c1a3dd719b735f7f77306d92baf5923df4fb0b10.tar.gz libquotient-c1a3dd719b735f7f77306d92baf5923df4fb0b10.zip |
return false in processStateEvent; make processCall private
Diffstat (limited to 'lib/room.h')
-rw-r--r-- | lib/room.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -302,8 +302,6 @@ namespace QMatrixClient MemberSorter memberSorter() const; - bool processCall(Room* room, const RoomEvent* event); - Q_INVOKABLE void inviteCall(const QString& callId, const int lifetime, const QString& sdp); Q_INVOKABLE void callCandidates(const QString& callId, @@ -438,6 +436,8 @@ namespace QMatrixClient const RoomEvent& /*after*/) { } private: + bool processCall(Room* room, const RoomEvent* event); + class Private; Private* d; }; |