From 98751495f1990dccf285e3b4739f86de7b7f68fd Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sat, 4 Aug 2018 20:36:29 +0900 Subject: Room: avoid overloading postMessage, as QML is bad at resolving overloaded slots Closes #227. --- examples/qmc-example.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples') 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, -- cgit v1.2.3