Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPopkornium18 <mail@popkornium18.de>2020-07-02 01:24:44 +0300
committerPopkornium18 <mail@popkornium18.de>2020-07-02 13:19:16 +0300
commitf966b3ef37b7d609b533404d8f7a2298bc9c9e17 (patch)
tree5dc2d83b3fb3c41b91a0a793d6ee70814305b38c /src/ServerResolver.h
parentfd02c573b1788119757bf69b42b433ca51fc10da (diff)
REFAC(shared): replace NULL with nullptr
This changes all occurances of NULL in the src source dir to nullptr. Additionally explicit comparisons with NULL were removed.
Diffstat (limited to 'src/ServerResolver.h')
-rw-r--r--src/ServerResolver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ServerResolver.h b/src/ServerResolver.h
index 2927f0972..9d00ea859 100644
--- a/src/ServerResolver.h
+++ b/src/ServerResolver.h
@@ -20,7 +20,7 @@ class ServerResolver : public QObject {
Q_OBJECT
Q_DISABLE_COPY(ServerResolver)
public:
- ServerResolver(QObject *parent = NULL);
+ ServerResolver(QObject *parent = nullptr);
QString hostname();
quint16 port();