diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-14 08:06:14 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-14 10:07:50 +0900 |
commit | cf10a4e9e6bcfa7932f166b251563b990f0dd61e (patch) | |
tree | c94de1ca9fadc60ab80c67a0ccd4d35b9496a8d8 | |
parent | b3ffe9195f1b018a8c8b7503ee4687d978ea4eab (diff) | |
download | libquotient-cf10a4e9e6bcfa7932f166b251563b990f0dd61e.tar.gz libquotient-cf10a4e9e6bcfa7932f166b251563b990f0dd61e.zip |
Room::messageEvents: switch to an alias instead of explicit QList<>
To facilitate a possible change of a container type.
-rw-r--r-- | room.cpp | 4 | ||||
-rw-r--r-- | room.h | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -60,7 +60,7 @@ class Room::Private void updateDisplayname(); Connection* connection; - QList<Event*> messageEvents; + Timeline messageEvents; QString id; QStringList aliases; QString canonicalAlias; @@ -120,7 +120,7 @@ QString Room::id() const return d->id; } -QList< Event* > Room::messageEvents() const +Room::Timeline Room::messageEvents() const { return d->messageEvents; } @@ -37,11 +37,13 @@ namespace QMatrixClient { Q_OBJECT public: + using Timeline = Events; + Room(Connection* connection, QString id); virtual ~Room(); Q_INVOKABLE QString id() const; - Q_INVOKABLE QList<Event*> messageEvents() const; + Q_INVOKABLE Timeline messageEvents() const; Q_INVOKABLE QString name() const; Q_INVOKABLE QStringList aliases() const; Q_INVOKABLE QString canonicalAlias() const; |