forked from qt-creator/qt-creator
SSH: Consistently use override in SshForwardTcpIpTunnel
Fixes warnings when building with clang. Change-Id: I8775862e3ee4d717067f5cf42f9efe58e69845c7 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
@@ -45,14 +45,14 @@ class QSSH_EXPORT SshForwardedTcpIpTunnel : public QIODevice
|
||||
|
||||
public:
|
||||
typedef QSharedPointer<SshForwardedTcpIpTunnel> Ptr;
|
||||
~SshForwardedTcpIpTunnel();
|
||||
~SshForwardedTcpIpTunnel() override;
|
||||
|
||||
// QIODevice stuff
|
||||
bool atEnd() const;
|
||||
qint64 bytesAvailable() const;
|
||||
bool canReadLine() const;
|
||||
void close();
|
||||
bool isSequential() const { return true; }
|
||||
bool atEnd() const override;
|
||||
qint64 bytesAvailable() const override;
|
||||
bool canReadLine() const override;
|
||||
void close() override;
|
||||
bool isSequential() const override { return true; }
|
||||
|
||||
signals:
|
||||
void error(const QString &reason);
|
||||
|
||||
Reference in New Issue
Block a user