forked from qt-creator/qt-creator
Normalize connect()s
Change-Id: I27fee97c2837210d91948cc02f56cc5f6e6b19a2 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
@@ -275,7 +275,7 @@ ConfigureStepConfigWidget::ConfigureStepConfigWidget(ConfigureStep *configureSte
|
|||||||
configureStep, SLOT(setAdditionalArguments(QString)));
|
configureStep, SLOT(setAdditionalArguments(QString)));
|
||||||
connect(configureStep, SIGNAL(additionalArgumentsChanged(QString)),
|
connect(configureStep, SIGNAL(additionalArgumentsChanged(QString)),
|
||||||
this, SLOT(updateDetails()));
|
this, SLOT(updateDetails()));
|
||||||
connect(configureStep, SIGNAL(buildDirectoryChanged(void)),
|
connect(configureStep, SIGNAL(buildDirectoryChanged()),
|
||||||
this, SLOT(updateDetails()));
|
this, SLOT(updateDetails()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ namespace Internal {
|
|||||||
BeautifierPlugin::BeautifierPlugin() :
|
BeautifierPlugin::BeautifierPlugin() :
|
||||||
m_asyncFormatMapper(new QSignalMapper)
|
m_asyncFormatMapper(new QSignalMapper)
|
||||||
{
|
{
|
||||||
connect(m_asyncFormatMapper, SIGNAL(mapped(QObject *)),
|
connect(m_asyncFormatMapper, SIGNAL(mapped(QObject*)),
|
||||||
this, SLOT(formatCurrentFileContinue(QObject*)));
|
this, SLOT(formatCurrentFileContinue(QObject*)));
|
||||||
connect(this, SIGNAL(pipeError(QString)), this, SLOT(showError(QString)));
|
connect(this, SIGNAL(pipeError(QString)), this, SLOT(showError(QString)));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,8 +74,8 @@ ClangIndexer::ClangIndexer()
|
|||||||
, m_isLoadingSession(false)
|
, m_isLoadingSession(false)
|
||||||
, m_clangIndexer(new Indexer(this))
|
, m_clangIndexer(new Indexer(this))
|
||||||
{
|
{
|
||||||
connect(m_clangIndexer, SIGNAL(indexingStarted(QFuture<void>, Internal::ProgressNotificationMode)),
|
connect(m_clangIndexer, SIGNAL(indexingStarted(QFuture<void>,Internal::ProgressNotificationMode)),
|
||||||
this, SLOT(onIndexingStarted(QFuture<void>, Internal::ProgressNotificationMode)));
|
this, SLOT(onIndexingStarted(QFuture<void>,Internal::ProgressNotificationMode)));
|
||||||
|
|
||||||
QObject *session = ProjectExplorer::SessionManager::instance();
|
QObject *session = ProjectExplorer::SessionManager::instance();
|
||||||
|
|
||||||
|
|||||||
@@ -117,8 +117,8 @@ IosAnalyzeSupport::IosAnalyzeSupport(IosRunConfiguration *runConfig,
|
|||||||
|
|
||||||
connect(m_runner, SIGNAL(gotServerPorts(int,int)),
|
connect(m_runner, SIGNAL(gotServerPorts(int,int)),
|
||||||
SLOT(handleServerPorts(int,int)));
|
SLOT(handleServerPorts(int,int)));
|
||||||
connect(m_runner, SIGNAL(gotInferiorPid(Q_PID, int)),
|
connect(m_runner, SIGNAL(gotInferiorPid(Q_PID,int)),
|
||||||
SLOT(handleGotInferiorPid(Q_PID, int)));
|
SLOT(handleGotInferiorPid(Q_PID,int)));
|
||||||
connect(m_runner, SIGNAL(finished(bool)),
|
connect(m_runner, SIGNAL(finished(bool)),
|
||||||
SLOT(handleRemoteProcessFinished(bool)));
|
SLOT(handleRemoteProcessFinished(bool)));
|
||||||
|
|
||||||
|
|||||||
@@ -189,8 +189,8 @@ IosDebugSupport::IosDebugSupport(IosRunConfiguration *runConfig,
|
|||||||
|
|
||||||
connect(m_runner, SIGNAL(gotServerPorts(int,int)),
|
connect(m_runner, SIGNAL(gotServerPorts(int,int)),
|
||||||
SLOT(handleServerPorts(int,int)));
|
SLOT(handleServerPorts(int,int)));
|
||||||
connect(m_runner, SIGNAL(gotInferiorPid(Q_PID, int)),
|
connect(m_runner, SIGNAL(gotInferiorPid(Q_PID,int)),
|
||||||
SLOT(handleGotInferiorPid(Q_PID, int)));
|
SLOT(handleGotInferiorPid(Q_PID,int)));
|
||||||
connect(m_runner, SIGNAL(finished(bool)),
|
connect(m_runner, SIGNAL(finished(bool)),
|
||||||
SLOT(handleRemoteProcessFinished(bool)));
|
SLOT(handleRemoteProcessFinished(bool)));
|
||||||
|
|
||||||
|
|||||||
@@ -153,8 +153,8 @@ ProjectExplorer::RunControl *BlackBerryRunControlFactory::create(ProjectExplorer
|
|||||||
BlackBerryApplicationRunner *runner = new BlackBerryApplicationRunner(launchFlags, rc, runControl);
|
BlackBerryApplicationRunner *runner = new BlackBerryApplicationRunner(launchFlags, rc, runControl);
|
||||||
|
|
||||||
connect(runner, SIGNAL(finished()), runControl, SLOT(notifyRemoteFinished()));
|
connect(runner, SIGNAL(finished()), runControl, SLOT(notifyRemoteFinished()));
|
||||||
connect(runner, SIGNAL(output(QString, Utils::OutputFormat)),
|
connect(runner, SIGNAL(output(QString,Utils::OutputFormat)),
|
||||||
runControl, SLOT(logApplicationMessage(QString, Utils::OutputFormat)));
|
runControl, SLOT(logApplicationMessage(QString,Utils::OutputFormat)));
|
||||||
connect(runControl, SIGNAL(starting(const Analyzer::AnalyzerRunControl*)),
|
connect(runControl, SIGNAL(starting(const Analyzer::AnalyzerRunControl*)),
|
||||||
runner, SLOT(start()));
|
runner, SLOT(start()));
|
||||||
connect(runControl, SIGNAL(finished()), runner, SLOT(stop()));
|
connect(runControl, SIGNAL(finished()), runner, SLOT(stop()));
|
||||||
|
|||||||
@@ -229,8 +229,8 @@ void WinRtRunnerHelper::startWinRtRunner(const RunConf &conf)
|
|||||||
|
|
||||||
if (connectProcess) {
|
if (connectProcess) {
|
||||||
connect(process, SIGNAL(started()), SIGNAL(started()));
|
connect(process, SIGNAL(started()), SIGNAL(started()));
|
||||||
connect(process, SIGNAL(finished(int, QProcess::ExitStatus)),
|
connect(process, SIGNAL(finished(int,QProcess::ExitStatus)),
|
||||||
SLOT(onProcessFinished(int, QProcess::ExitStatus)));
|
SLOT(onProcessFinished(int,QProcess::ExitStatus)));
|
||||||
connect(process, SIGNAL(error(QProcess::ProcessError)),
|
connect(process, SIGNAL(error(QProcess::ProcessError)),
|
||||||
SLOT(onProcessError(QProcess::ProcessError)));
|
SLOT(onProcessError(QProcess::ProcessError)));
|
||||||
connect(process, SIGNAL(readyReadStandardOutput()), SLOT(onProcessReadyReadStdOut()));
|
connect(process, SIGNAL(readyReadStandardOutput()), SLOT(onProcessReadyReadStdOut()));
|
||||||
|
|||||||
@@ -585,8 +585,8 @@ void IosTool::run(const QStringList &args)
|
|||||||
SLOT(isTransferringApp(QString,QString,int,QString)));
|
SLOT(isTransferringApp(QString,QString,int,QString)));
|
||||||
connect(manager,SIGNAL(didTransferApp(QString,QString,Ios::IosDeviceManager::OpStatus)),
|
connect(manager,SIGNAL(didTransferApp(QString,QString,Ios::IosDeviceManager::OpStatus)),
|
||||||
SLOT(didTransferApp(QString,QString,Ios::IosDeviceManager::OpStatus)));
|
SLOT(didTransferApp(QString,QString,Ios::IosDeviceManager::OpStatus)));
|
||||||
connect(manager,SIGNAL(didStartApp(QString,QString,Ios::IosDeviceManager::OpStatus,int,Ios::DeviceSession *)),
|
connect(manager,SIGNAL(didStartApp(QString,QString,Ios::IosDeviceManager::OpStatus,int,Ios::DeviceSession*)),
|
||||||
SLOT(didStartApp(QString,QString,Ios::IosDeviceManager::OpStatus,int,Ios::DeviceSession *)));
|
SLOT(didStartApp(QString,QString,Ios::IosDeviceManager::OpStatus,int,Ios::DeviceSession*)));
|
||||||
connect(manager,SIGNAL(deviceInfo(QString,Ios::IosDeviceManager::Dict)),
|
connect(manager,SIGNAL(deviceInfo(QString,Ios::IosDeviceManager::Dict)),
|
||||||
SLOT(deviceInfo(QString,Ios::IosDeviceManager::Dict)));
|
SLOT(deviceInfo(QString,Ios::IosDeviceManager::Dict)));
|
||||||
connect(manager,SIGNAL(appOutput(QString)), SLOT(appOutput(QString)));
|
connect(manager,SIGNAL(appOutput(QString)), SLOT(appOutput(QString)));
|
||||||
|
|||||||
Reference in New Issue
Block a user