summaryrefslogtreecommitdiff
path: root/src/imports
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 /src/imports
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 'src/imports')
-rw-r--r--src/imports/qmlwebsockets/qqmlwebsocket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/qmlwebsockets/qqmlwebsocket.cpp b/src/imports/qmlwebsockets/qqmlwebsocket.cpp
index 7ba03c0..f58c8d0 100644
--- a/src/imports/qmlwebsockets/qqmlwebsocket.cpp
+++ b/src/imports/qmlwebsockets/qqmlwebsocket.cpp
@@ -126,7 +126,7 @@ qint64 QQmlWebSocket::sendTextMessage(const QString &message)
setStatus(Error);
return 0;
}
- return m_webSocket->write(message);
+ return m_webSocket->sendTextMessage(message);
}
QUrl QQmlWebSocket::url() const