aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2014-01-04 15:44:44 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-04 15:45:29 +0100
commit878b0f72166536d9eef3d9101b2e2e0c52c2eb61 (patch)
treefc93c757552d13af36d137a866b78883da1ea4e1
parent7f8161d505f3cd5163481a6cf57103469fcaab06 (diff)
Correct whitespace
Change-Id: I9cefb6139c41317ba2eb1453b66411132efbee6a Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
-rw-r--r--src/websockets/qwebsocketprotocol_p.cpp18
1 files changed, 9 insertions, 9 deletions
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);