Ios: Use Qt5-style connects

The heavy lifting was done by clazy.

Change-Id: I1b25f0108939d87e859d0407a35f75b88fa0edc3
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Orgad Shaneh
2016-06-29 19:35:23 +03:00
committed by Orgad Shaneh
parent a21e71ec1a
commit 3410fee65f
19 changed files with 60 additions and 84 deletions

View File

@@ -71,7 +71,7 @@ signals:
//void done();
//void error();
private slots:
private:
void handleIsTransferringApp(Ios::IosToolHandler *handler, const QString &bundlePath,
const QString &deviceId, int progress, int maxProgress,
const QString &info);
@@ -80,9 +80,7 @@ private slots:
void handleFinished(Ios::IosToolHandler *handler);
void handleErrorMsg(Ios::IosToolHandler *handler, const QString &msg);
void updateDisplayNames();
private:
IosDeployStep(ProjectExplorer::BuildStepList *bc,
IosDeployStep *other);
IosDeployStep(ProjectExplorer::BuildStepList *bc, IosDeployStep *other);
bool init(QList<const BuildStep *> &earlierSteps) override;
ProjectExplorer::BuildStepConfigWidget *createConfigWidget() override;
bool immutable() const override { return true; }
@@ -97,7 +95,7 @@ private:
void raiseError(const QString &error);
void writeOutput(const QString &text, OutputFormat = MessageOutput);
void checkProvisioningProfile();
private:
TransferStatus m_transferStatus;
IosToolHandler *m_toolHandler;
QFutureInterface<bool> m_futureInterface;