aboutsummaryrefslogtreecommitdiffstats
path: root/src/websockets/qwebsocket.h
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2014-02-03 01:40:33 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-04 11:15:19 +0100
commita2fd8f50fe268d3f384418073e8fdc07fd258c62 (patch)
tree352ce66c22553b096b0dd09c4a00e548bb0dc212 /src/websockets/qwebsocket.h
parenta759cd77495d34ce5c47d17e3e084084f6cedd04 (diff)
Remove superfluous Q_REQUIRED_RESULT
Change-Id: Ie4e01a82082c45918b55e8588c7322dd359ba8c1 Reviewed-by: Milian Wolff <milian.wolff@kdab.com> 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 15c3a82..5a8cd1a 100644
--- a/src/websockets/qwebsocket.h
+++ b/src/websockets/qwebsocket.h
@@ -100,8 +100,8 @@ public:
QWebSocketProtocol::CloseCode closeCode() const;
QString closeReason() const;
- qint64 sendTextMessage(const QString &message) Q_REQUIRED_RESULT;
- qint64 sendBinaryMessage(const QByteArray &data) Q_REQUIRED_RESULT;
+ qint64 sendTextMessage(const QString &message);
+ qint64 sendBinaryMessage(const QByteArray &data);
#ifndef QT_NO_SSL
void ignoreSslErrors(const QList<QSslError> &errors);