Correct whitespace
authorKurt Pattyn <pattyn.kurt@gmail.com>
Sat, 4 Jan 2014 14:44:44 +0000 (15:44 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Sat, 4 Jan 2014 14:45:29 +0000 (15:45 +0100)
Change-Id: I9cefb6139c41317ba2eb1453b66411132efbee6a
Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
src/websockets/qwebsocketprotocol_p.cpp

index 65ddee9..0fb7840 100644 (file)
@@ -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);