diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-08-04 20:36:29 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-08-04 20:36:29 +0900 |
commit | 98751495f1990dccf285e3b4739f86de7b7f68fd (patch) | |
tree | fc0f220c25c37115d1b8b21057a046bed7723d02 /examples | |
parent | 7298e99125522c4d010ec83052cd10ce085e09b4 (diff) | |
download | libquotient-98751495f1990dccf285e3b4739f86de7b7f68fd.tar.gz libquotient-98751495f1990dccf285e3b4739f86de7b7f68fd.zip |
Room: avoid overloading postMessage, as QML is bad at resolving overloaded slots
Closes #227.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/qmc-example.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/qmc-example.cpp b/examples/qmc-example.cpp index ce38e916..484cd027 100644 --- a/examples/qmc-example.cpp +++ b/examples/qmc-example.cpp @@ -88,7 +88,7 @@ void QMCTest::setup(const QString& testRoomName) c->sync(10000); else if (targetRoom) { - targetRoom->postMessage(origin % ": All tests finished"); + targetRoom->postPlainText(origin % ": All tests finished"); connect(targetRoom, &Room::pendingEventMerged, this, &QMCTest::leave); } else @@ -152,7 +152,7 @@ void QMCTest::sendMessage() { running.push_back("Message sending"); cout << "Sending a message" << endl; - auto txnId = targetRoom->postMessage("Hello, " % origin % " is here"); + auto txnId = targetRoom->postPlainText("Hello, " % origin % " is here"); auto& pending = targetRoom->pendingEvents(); if (pending.empty()) { @@ -233,7 +233,7 @@ void QMCTest::checkRedactionOutcome(const QString& evtIdToRedact, const auto msg = "The redacted event came in with the sync again, ignoring"; cout << msg << endl; - targetRoom->postMessage(msg); + targetRoom->postPlainText(msg); return; } cout << "The sync brought already redacted message" << endl; @@ -249,7 +249,7 @@ void QMCTest::checkRedactionOutcome(const QString& evtIdToRedact, const auto msg = "Warning: the redacted event came non-redacted with the sync!"; cout << msg << endl; - targetRoom->postMessage(msg); + targetRoom->postPlainText(msg); } cout << "Message came non-redacted with the sync, waiting for redaction" << endl; connect(targetRoom, &Room::replacedEvent, targetRoom, |