From: Kurt Pattyn Date: Sat, 4 Jan 2014 14:44:44 +0000 (+0100) Subject: Correct whitespace X-Git-Tag: v5.3.0-alpha1~89 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=878b0f72166536d9eef3d9101b2e2e0c52c2eb61;p=contrib%2Fqtwebsockets.git Correct whitespace Change-Id: I9cefb6139c41317ba2eb1453b66411132efbee6a Reviewed-by: Kurt Pattyn --- diff --git a/src/websockets/qwebsocketprotocol_p.cpp b/src/websockets/qwebsocketprotocol_p.cpp index 65ddee9..0fb7840 100644 --- a/src/websockets/qwebsocketprotocol_p.cpp +++ b/src/websockets/qwebsocketprotocol_p.cpp @@ -130,9 +130,9 @@ QT_BEGIN_NAMESPACE namespace QWebSocketProtocol { /*! - Parses the \a versionString and converts it to a Version value - \internal - */ + Parses the \a versionString and converts it to a Version value + \internal +*/ Version versionFromString(const QString &versionString) { bool ok = false; @@ -146,9 +146,9 @@ Version versionFromString(const QString &versionString) } /*! - Mask the \a payload with the given \a maskingKey and stores the result back in \a payload. - \internal - */ + Mask the \a payload with the given \a maskingKey and stores the result back in \a payload. + \internal +*/ void mask(QByteArray *payload, quint32 maskingKey) { Q_ASSERT(payload); @@ -156,9 +156,9 @@ void mask(QByteArray *payload, quint32 maskingKey) } /*! - Masks the \a payload of length \a size with the given \a maskingKey and stores the result back in \a payload. - \internal - */ + Masks the \a payload of length \a size with the given \a maskingKey and stores the result back in \a payload. + \internal +*/ void mask(char *payload, quint64 size, quint32 maskingKey) { Q_ASSERT(payload);