forked from qt-creator/qt-creator
ios: use QTC_OVERRIDE consistently
Change-Id: I154b70896b359e09f53607bedd968a5e7a0ab148 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
#define IOSRUNCONTROL_H
|
||||
|
||||
#include <projectexplorer/runconfiguration.h>
|
||||
#include <utils/qtcoverride.h>
|
||||
|
||||
namespace Ios {
|
||||
namespace Internal {
|
||||
@@ -43,14 +44,14 @@ class IosRunControl : public ProjectExplorer::RunControl
|
||||
|
||||
public:
|
||||
explicit IosRunControl(IosRunConfiguration *runConfig);
|
||||
~IosRunControl();
|
||||
~IosRunControl() QTC_OVERRIDE;
|
||||
|
||||
|
||||
void start();
|
||||
StopResult stop();
|
||||
bool isRunning() const;
|
||||
QString displayName() const;
|
||||
QIcon icon() const;
|
||||
void start() QTC_OVERRIDE;
|
||||
StopResult stop() QTC_OVERRIDE;
|
||||
bool isRunning() const QTC_OVERRIDE;
|
||||
QString displayName() const QTC_OVERRIDE;
|
||||
QIcon icon() const QTC_OVERRIDE;
|
||||
|
||||
private slots:
|
||||
void handleRemoteProcessFinished(bool cleanEnd);
|
||||
|
||||
Reference in New Issue
Block a user