diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-06 09:10:50 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-07 11:55:08 +0900 |
commit | 67fad643e30eb38f51e496f6f4257c04eb0d8b92 (patch) | |
tree | 231651428f814c6cec2de443848f89f42a8ece07 | |
parent | e9b445909f2707ca199e102e8cae2f11f7b64701 (diff) | |
download | libquotient-67fad643e30eb38f51e496f6f4257c04eb0d8b92.tar.gz libquotient-67fad643e30eb38f51e496f6f4257c04eb0d8b92.zip |
Connection: undeprecate joinRoom()
This is for the same reason as Connection::getThumbnail() - it's the only non-template (hence, supported by QML and Qt queued signal connections) way to invoke joining a room.
-rw-r--r-- | connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connection.h b/connection.h index 256dbd5f..fc6f4588 100644 --- a/connection.h +++ b/connection.h @@ -182,6 +182,8 @@ namespace QMatrixClient int requestedWidth, int requestedHeight) const; + virtual JoinRoomJob* joinRoom(const QString& roomAlias); + // Old API that will be abolished any time soon. DO NOT USE. /** @deprecated Use callApi<PostMessageJob>() or Room::postMessage() instead */ @@ -190,8 +192,6 @@ namespace QMatrixClient /** @deprecated Use callApi<PostReceiptJob>() or Room::postReceipt() instead */ virtual PostReceiptJob* postReceipt(Room* room, RoomEvent* event) const; - /** @deprecated Use callApi<JoinRoomJob>() instead */ - virtual JoinRoomJob* joinRoom(const QString& roomAlias); /** @deprecated Use callApi<LeaveRoomJob>() or Room::leaveRoom() instead */ virtual void leaveRoom( Room* room ); /** @deprecated User callApi<RoomMessagesJob>() or Room::getPreviousContent() instead */ |