summaryrefslogtreecommitdiff
path: root/examples/echoclient
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2014-01-19 13:43:52 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-20 20:13:00 +0100
commitf8b27c6b833ee796193ae115cb87574cb0e4df4c (patch)
tree3196696628cbb08b72c534eac7187fd5d26c102a /examples/echoclient
parent02e71a5d8c2a006684e2223084231c07d1fe818f (diff)
downloadqtwebsockets-f8b27c6b833ee796193ae115cb87574cb0e4df4c.tar.gz
Rename write methods
Renamed the write methods to sendTextMessage and sendBinaryMessage respectively. This makes the code more readable. Change-Id: Ie49abf07a37f54c84bd01c5c788d2e42b28bcfdd Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'examples/echoclient')
-rw-r--r--examples/echoclient/echoclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/echoclient/echoclient.cpp b/examples/echoclient/echoclient.cpp
index 0c9bef8..c1ef7ed 100644
--- a/examples/echoclient/echoclient.cpp
+++ b/examples/echoclient/echoclient.cpp
@@ -61,7 +61,7 @@ void EchoClient::onConnected()
qDebug() << "Websocket connected";
connect(&m_webSocket, &QWebSocket::textMessageReceived,
this, &EchoClient::onTextMessageReceived);
- qint64 bytesWritten = m_webSocket.write(QStringLiteral("Hello, world!"));
+ qint64 bytesWritten = m_webSocket.sendTextMessage(QStringLiteral("Hello, world!"));
Q_UNUSED(bytesWritten);
}
//! [onConnected]