diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-05-09 04:43:27 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-05-09 05:30:30 +0900 |
commit | 6431636e6a02d4fddb848e09e79156724e00f6f6 (patch) | |
tree | a1cbd504be9b16a205fed0b192e8b82123e5a70e | |
parent | 5038ae0a0099c2a5c6ffdd08734b597d92edac70 (diff) | |
download | libquotient-6431636e6a02d4fddb848e09e79156724e00f6f6.tar.gz libquotient-6431636e6a02d4fddb848e09e79156724e00f6f6.zip |
Allow to get a Connection object of the Room
It's just natural, after all, Connection is a parent of Room. But seriously, this will be needed when we have rooms from different Connections living next to each other.
-rw-r--r-- | room.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -63,6 +63,7 @@ namespace QMatrixClient class Room: public QObject { Q_OBJECT + Q_PROPERTY(const Connection* connection READ connection CONSTANT) Q_PROPERTY(QString id READ id CONSTANT) Q_PROPERTY(QString name READ name NOTIFY namesChanged) Q_PROPERTY(QStringList aliases READ aliases NOTIFY namesChanged) @@ -77,6 +78,7 @@ namespace QMatrixClient Room(Connection* connection, QString id); virtual ~Room(); + Connection* connection() const; QString id() const; QString name() const; QStringList aliases() const; @@ -173,7 +175,6 @@ namespace QMatrixClient void unreadMessagesChanged(Room* room); protected: - Connection* connection() const; virtual void doAddNewMessageEvents(const Events& events); virtual void doAddHistoricalMessageEvents(const Events& events); virtual void processStateEvents(const Events& events); |