diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-11-02 15:19:02 +0300 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-11-02 15:21:36 +0300 |
commit | 414621681a0c1e8bf1f5a01b376b47f24cb95aab (patch) | |
tree | 5e04a614f6513688e8953ad3dca56d0d61132eb4 | |
parent | 7ba7e2072850a59f9797ea97a05c5139c743b88f (diff) | |
download | libquotient-414621681a0c1e8bf1f5a01b376b47f24cb95aab.tar.gz libquotient-414621681a0c1e8bf1f5a01b376b47f24cb95aab.zip |
Room: Move away internal methods to not mislead client authors
-rw-r--r-- | room.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -116,9 +116,6 @@ namespace QMatrixClient */ Q_INVOKABLE QString roomMembername(const QString& userId) const; - void updateData(SyncRoomData&& data ); - Q_INVOKABLE void setJoinState( JoinState state ); - const Timeline& messageEvents() const; /** * A convenience method returning the read marker to the before-oldest @@ -155,6 +152,8 @@ namespace QMatrixClient MemberSorter memberSorter() const; QJsonObject toJson() const; + void updateData(SyncRoomData&& data ); + void setJoinState( JoinState state ); public slots: void postMessage(const QString& plainText, |