summaryrefslogtreecommitdiff
path: root/examples/webchannel/shared/websockettransport.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2017-08-28 13:04:34 +0200
committerKai Koehne <kai.koehne@qt.io>2017-08-29 09:36:27 +0000
commit022b4392f6ea5586101f68173b0f8b7868e63586 (patch)
tree14c06a2cff39db14e2b61c8ca46edb2b90609d57 /examples/webchannel/shared/websockettransport.cpp
parentb5229df6a08a902b11a2fc9529af6385f4d985d5 (diff)
downloadqtwebchannel-022b4392f6ea5586101f68173b0f8b7868e63586.tar.gz
Examples: Do not put example code in Qt namespace
Instead just wrap forward-declared Qt classes. See also https://wiki.qt.io/Writing_Qt_Examples Change-Id: I3707bb6ee5577e49a6b860e8f1c21b6aaf6405c2 Reviewed-by: Milian Wolff <milian.wolff@kdab.com>
Diffstat (limited to 'examples/webchannel/shared/websockettransport.cpp')
-rw-r--r--examples/webchannel/shared/websockettransport.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/webchannel/shared/websockettransport.cpp b/examples/webchannel/shared/websockettransport.cpp
index a65bc2d..4dbec39 100644
--- a/examples/webchannel/shared/websockettransport.cpp
+++ b/examples/webchannel/shared/websockettransport.cpp
@@ -64,8 +64,6 @@
be send over the QWebSocket to the remote client.
*/
-QT_BEGIN_NAMESPACE
-
/*!
Construct the transport object and wrap the given socket.
@@ -115,5 +113,3 @@ void WebSocketTransport::textMessageReceived(const QString &messageData)
}
emit messageReceived(message.object(), this);
}
-
-QT_END_NAMESPACE