From 53e3ef39af62dc44cfa3984db3cc18b0a5d349b6 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 30 Oct 2017 12:13:14 +0300 Subject: Room::timelineSize() convenience method --- room.cpp | 5 +++++ room.h | 1 + 2 files changed, 6 insertions(+) diff --git a/room.cpp b/room.cpp index 4f58e393..1b6afac9 100644 --- a/room.cpp +++ b/room.cpp @@ -414,6 +414,11 @@ int Room::memberCount() const return d->membersMap.size(); } +int Room::timelineSize() const +{ + return int(d->timeline.size()); +} + void Room::Private::insertMemberIntoMap(User *u) { auto namesakes = membersMap.values(u->name()); diff --git a/room.h b/room.h index 2fa7e7d5..f224a8ae 100644 --- a/room.h +++ b/room.h @@ -97,6 +97,7 @@ namespace QMatrixClient Q_INVOKABLE QList users() const; Q_INVOKABLE QStringList memberNames() const; Q_INVOKABLE int memberCount() const; + Q_INVOKABLE int timelineSize() const; /** * Returns a room avatar and requests it from the network if needed -- cgit v1.2.3