aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-08-03 19:10:10 +0200
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-08-03 19:15:09 +0200
commit82bcc316d736bd04174876efde38827c34181c33 (patch)
tree9e294f44077f98ec04ba33002a8c3b59c52ec05a /lib
parent08e19449ad4e33b9ec3eb66c56501f1c4a977350 (diff)
downloadlibquotient-82bcc316d736bd04174876efde38827c34181c33.tar.gz
libquotient-82bcc316d736bd04174876efde38827c34181c33.zip
Cleanup
Diffstat (limited to 'lib')
-rw-r--r--lib/connection.h6
-rw-r--r--lib/events/roomcanonicalaliasevent.h6
2 files changed, 8 insertions, 4 deletions
diff --git a/lib/connection.h b/lib/connection.h
index 48ea4f5e..258280a8 100644
--- a/lib/connection.h
+++ b/lib/connection.h
@@ -238,7 +238,8 @@ public:
/** Get the list of rooms with the specified tag */
QVector<Room*> roomsWithTag(const QString& tagName) const;
- /** Mark the room as a direct chat with the user
+ /*! \brief Mark the room as a direct chat with the user
+ *
* This function marks \p room as a direct chat with \p user.
* Emits the signal synchronously, without waiting to complete
* synchronisation with the server.
@@ -247,7 +248,8 @@ public:
*/
void addToDirectChats(const Room* room, User* user);
- /** Unmark the room from direct chats
+ /*! \brief Unmark the room from direct chats
+ *
* This function removes the room id from direct chats either for
* a specific \p user or for all users if \p user in nullptr.
* The room id is used to allow removal of, e.g., ids of forgotten
diff --git a/lib/events/roomcanonicalaliasevent.h b/lib/events/roomcanonicalaliasevent.h
index 5d680de7..fadfece0 100644
--- a/lib/events/roomcanonicalaliasevent.h
+++ b/lib/events/roomcanonicalaliasevent.h
@@ -59,12 +59,14 @@ public:
: StateEvent(typeId(), obj)
{ }
- explicit RoomCanonicalAliasEvent(const QString& canonicalAlias, const QStringList& altAliases = {})
+ explicit RoomCanonicalAliasEvent(const QString& canonicalAlias,
+ const QStringList& altAliases = {})
: StateEvent(typeId(), matrixTypeId(), QString(),
canonicalAlias, altAliases)
{ }
- explicit RoomCanonicalAliasEvent(QString&& canonicalAlias, QStringList&& altAliases = {})
+ explicit RoomCanonicalAliasEvent(QString&& canonicalAlias,
+ QStringList&& altAliases = {})
: StateEvent(typeId(), matrixTypeId(), QString(),
std::move(canonicalAlias), std::move(altAliases))
{ }