diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-04-13 20:21:04 +0300 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-04-14 19:36:23 +0300 |
commit | 336b66edcc02cbf29f119107777c5bfc6d751c3d (patch) | |
tree | 481d7c59e9785e6acfcf419dd7eca23384b026bd /room.h | |
parent | b5f3a57840986d3ebdc9bb81d73e0c4d6e876071 (diff) | |
download | libquotient-336b66edcc02cbf29f119107777c5bfc6d751c3d.tar.gz libquotient-336b66edcc02cbf29f119107777c5bfc6d751c3d.zip |
Enable PostMessageJob to send rich text messages
Diffstat (limited to 'room.h')
-rw-r--r-- | room.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -139,7 +139,9 @@ namespace QMatrixClient MemberSorter memberSorter() const; public slots: - void postMessage(QString msgType, QString msgContent); + void postMessage(const QString& type, const QString& plainText); + void postMessage(const QString& type, const QString& plainText, + const QString& richText); void getPreviousContent(int limit = 10); void userRenamed(User* user, QString oldName); |