aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-03-31 18:41:12 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-03-31 18:41:12 +0900
commit07827998c5ffe495ce83e4b1034d9e016f7296e8 (patch)
treec6e36e92a45316cb4127b560245c0d2ef1087bd8
parent27c29894a77a0733085b3901297a64773069c61a (diff)
downloadlibquotient-07827998c5ffe495ce83e4b1034d9e016f7296e8.tar.gz
libquotient-07827998c5ffe495ce83e4b1034d9e016f7296e8.zip
Room::refreshDisplayName() - for debugging purposes only
Clients should not need to call this method explicitly.
-rw-r--r--lib/room.cpp5
-rw-r--r--lib/room.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 0305cf7b..b0c898fb 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -389,6 +389,11 @@ QString Room::displayName() const
return d->displayname;
}
+void Room::refreshDisplayName()
+{
+ d->updateDisplayname();
+}
+
QString Room::topic() const
{
return d->getCurrentState<RoomTopicEvent>()->topic();
diff --git a/lib/room.h b/lib/room.h
index 3da2d4e7..adec7650 100644
--- a/lib/room.h
+++ b/lib/room.h
@@ -408,6 +408,9 @@ namespace QMatrixClient
void setAliases(const QStringList& aliases);
void setTopic(const QString& newTopic);
+ /// You shouldn't normally call this method; it's here for debugging
+ void refreshDisplayName();
+
void getPreviousContent(int limit = 10);
void inviteToRoom(const QString& memberId);