forked from qt-creator/qt-creator
Use Q_DECL_OVERRIDE instead of QTC_OVERRIDE
This patch removes src/libs/utils/qtcoverride.h and uses Q_DECL_OVERRIDE from Qt 5 instead. Change-Id: I61ffa539648ffe996dc061eec7708c04580c0f09 Reviewed-by: Eike Ziller <eike.ziller@digia.com> Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
@@ -30,7 +30,6 @@
|
||||
#define IOSRUNCONTROL_H
|
||||
|
||||
#include <projectexplorer/runconfiguration.h>
|
||||
#include <utils/qtcoverride.h>
|
||||
|
||||
namespace Ios {
|
||||
namespace Internal {
|
||||
@@ -47,10 +46,10 @@ public:
|
||||
~IosRunControl();
|
||||
|
||||
|
||||
void start() QTC_OVERRIDE;
|
||||
StopResult stop() QTC_OVERRIDE;
|
||||
bool isRunning() const QTC_OVERRIDE;
|
||||
QString displayName() const QTC_OVERRIDE;
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
StopResult stop() Q_DECL_OVERRIDE;
|
||||
bool isRunning() const Q_DECL_OVERRIDE;
|
||||
QString displayName() const Q_DECL_OVERRIDE;
|
||||
|
||||
private slots:
|
||||
void handleRemoteProcessFinished(bool cleanEnd);
|
||||
|
||||
Reference in New Issue
Block a user