aboutsummaryrefslogtreecommitdiffstats
path: root/src/websockets/qwebsocket.h
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/websockets/qwebsocket.h
parent02e71a5d8c2a006684e2223084231c07d1fe818f (diff)
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/websockets/qwebsocket.h')
-rw-r--r--src/websockets/qwebsocket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/websockets/qwebsocket.h b/src/websockets/qwebsocket.h
index 18f8994..7f4131e 100644
--- a/src/websockets/qwebsocket.h
+++ b/src/websockets/qwebsocket.h
@@ -104,8 +104,8 @@ public:
QWebSocketProtocol::CloseCode closeCode() const;
QString closeReason() const;
- qint64 write(const QString &message) Q_REQUIRED_RESULT;
- qint64 write(const QByteArray &data) Q_REQUIRED_RESULT;
+ qint64 sendTextMessage(const QString &message) Q_REQUIRED_RESULT;
+ qint64 sendBinaryMessage(const QByteArray &data) Q_REQUIRED_RESULT;
#ifndef QT_NO_SSL
void ignoreSslErrors(const QList<QSslError> &errors);