X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fclientauthhandler.h;h=8cc07d12688434b058816f2d2cd40e62f63fb844;hb=61f33c7895e324f6e95034d86897ad2e963653f1;hp=47b42a71be8a2fe0efd4c703def493d165308d29;hpb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;p=quassel.git diff --git a/src/client/clientauthhandler.h b/src/client/clientauthhandler.h index 47b42a71..8cc07d12 100644 --- a/src/client/clientauthhandler.h +++ b/src/client/clientauthhandler.h @@ -78,13 +78,13 @@ signals: private: using AuthHandler::handle; - void handle(const Protocol::ClientDenied &msg); - void handle(const Protocol::ClientRegistered &msg); - void handle(const Protocol::SetupFailed &msg); - void handle(const Protocol::SetupDone &msg); - void handle(const Protocol::LoginFailed &msg); - void handle(const Protocol::LoginSuccess &msg); - void handle(const Protocol::SessionState &msg); + void handle(const Protocol::ClientDenied &msg) override; + void handle(const Protocol::ClientRegistered &msg) override; + void handle(const Protocol::SetupFailed &msg) override; + void handle(const Protocol::SetupDone &msg) override; + void handle(const Protocol::LoginFailed &msg) override; + void handle(const Protocol::LoginSuccess &msg) override; + void handle(const Protocol::SessionState &msg) override; void setPeer(RemotePeer *peer); void checkAndEnableSsl(bool coreSupportsSsl); @@ -93,8 +93,8 @@ private: private slots: void onSocketConnected(); void onSocketStateChanged(QAbstractSocket::SocketState state); - void onSocketError(QAbstractSocket::SocketError); - void onSocketDisconnected(); + void onSocketError(QAbstractSocket::SocketError) override; + void onSocketDisconnected() override; void onReadyRead(); #ifdef HAVE_SSL