forked from qt-creator/qt-creator
iostool: s/Q_DECL_OVERRIDE/override/g
Change-Id: I05e269b56bcdc3e4555116a584c2efaaccced6e5 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
@@ -267,8 +267,8 @@ public:
|
||||
bool startService(const QString &service, ServiceSocket &fd);
|
||||
void stopService(ServiceSocket fd);
|
||||
void startDeviceLookup(int timeout);
|
||||
bool connectToPort(quint16 port, ServiceSocket *fd) Q_DECL_OVERRIDE;
|
||||
int qmljsDebugPort() const Q_DECL_OVERRIDE;
|
||||
bool connectToPort(quint16 port, ServiceSocket *fd) override;
|
||||
int qmljsDebugPort() const override;
|
||||
void addError(const QString &msg);
|
||||
bool writeAll(ServiceSocket fd, const char *cmd, qptrdiff len = -1);
|
||||
bool sendGdbCommand(ServiceSocket fd, const char *cmd, qptrdiff len = -1);
|
||||
@@ -342,7 +342,7 @@ public:
|
||||
void deviceCallbackReturned();
|
||||
bool installApp();
|
||||
bool runApp();
|
||||
int qmljsDebugPort() const Q_DECL_OVERRIDE;
|
||||
int qmljsDebugPort() const override;
|
||||
am_res_t appTransferCallback(CFDictionaryRef dict);
|
||||
am_res_t appInstallCallback(CFDictionaryRef dict);
|
||||
void reportProgress2(int progress, const QString &status);
|
||||
|
@@ -127,7 +127,7 @@ class SingleRelayServer: public RelayServer
|
||||
public:
|
||||
SingleRelayServer(IosTool *parent, int serverFileDescriptor);
|
||||
protected:
|
||||
void newRelayConnection() Q_DECL_OVERRIDE;
|
||||
void newRelayConnection() override;
|
||||
private:
|
||||
int m_serverFileDescriptor;
|
||||
};
|
||||
@@ -138,7 +138,7 @@ public:
|
||||
GenericRelayServer(IosTool *parent, int remotePort,
|
||||
Ios::DeviceSession *deviceSession);
|
||||
protected:
|
||||
void newRelayConnection() Q_DECL_OVERRIDE;
|
||||
void newRelayConnection() override;
|
||||
private:
|
||||
int m_remotePort;
|
||||
Ios::DeviceSession *m_deviceSession;
|
||||
|
Reference in New Issue
Block a user