summaryrefslogtreecommitdiff
path: root/src/websockets/qwebsocket.h
diff options
context:
space:
mode:
authorKevin Funk <kfunk@kde.org>2017-09-24 23:55:05 +0200
committerKevin Funk <kevin.funk@kdab.com>2017-09-26 17:13:59 +0000
commit75042d31d1d267d0a4091932c95579747a102e9d (patch)
tree36a4efdd96f66e86d5628dd859e98a3b5fc07c19 /src/websockets/qwebsocket.h
parent140764f01742931f27cc721992ea7877396d8c9b (diff)
downloadqtwebsockets-75042d31d1d267d0a4091932c95579747a102e9d.tar.gz
Replace Q_NULLPTR with nullptr
Change-Id: I0988a4119b5bd790d286c16b5647d97d4d95aef0 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
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 cbe53ca..a80c47a 100644
--- a/src/websockets/qwebsocket.h
+++ b/src/websockets/qwebsocket.h
@@ -68,7 +68,7 @@ class Q_WEBSOCKETS_EXPORT QWebSocket : public QObject
public:
explicit QWebSocket(const QString &origin = QString(),
QWebSocketProtocol::Version version = QWebSocketProtocol::VersionLatest,
- QObject *parent = Q_NULLPTR);
+ QObject *parent = nullptr);
virtual ~QWebSocket();
void abort();
@@ -147,7 +147,7 @@ Q_SIGNALS:
private:
QWebSocket(QTcpSocket *pTcpSocket, QWebSocketProtocol::Version version,
- QObject *parent = Q_NULLPTR);
+ QObject *parent = nullptr);
};
QT_END_NAMESPACE