X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreauthhandler.h;h=e26e94c0eb1c0b657de3f71f3d1f8af73ace6440;hp=003d704e81f8c318c654fe7a009491836c6bbda9;hb=c194ed5fb3d15e14b9364f9796d3521910dc72fe;hpb=68878dc8366f2f4a0afe132847aad9a51a80cdbf diff --git a/src/core/coreauthhandler.h b/src/core/coreauthhandler.h index 003d704e..e26e94c0 100644 --- a/src/core/coreauthhandler.h +++ b/src/core/coreauthhandler.h @@ -31,7 +31,7 @@ class CoreAuthHandler : public AuthHandler Q_OBJECT public: - CoreAuthHandler(QTcpSocket *socket, QObject *parent = 0); + CoreAuthHandler(QTcpSocket *socket, QObject *parent = nullptr); signals: void handshakeComplete(RemotePeer *peer, UserId uid); @@ -39,9 +39,9 @@ signals: private: using AuthHandler::handle; - void handle(const Protocol::RegisterClient &msg); - void handle(const Protocol::SetupData &msg); - void handle(const Protocol::Login &msg); + void handle(const Protocol::RegisterClient &msg) override; + void handle(const Protocol::SetupData &msg) override; + void handle(const Protocol::Login &msg) override; void setPeer(RemotePeer *peer); void startSsl();