forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.4'
Conflicts: src/tools/clangbackend/ipcsource/clangiasyncjob.cpp src/tools/clangbackend/ipcsource/clangjobrequest.cpp src/tools/clangbackend/ipcsource/clangjobrequest.h Change-Id: Ib8602530663813ade418f995dfd2a736908cfe75
This commit is contained in:
@@ -394,10 +394,10 @@ IosQmlProfilerSupport::IosQmlProfilerSupport(RunControl *runControl)
|
||||
|
||||
m_runner = new IosRunner(runControl);
|
||||
m_runner->setQmlDebugging(QmlDebug::QmlProfilerServices);
|
||||
addDependency(m_runner);
|
||||
addStartDependency(m_runner);
|
||||
|
||||
m_profiler = runControl->createWorker(runControl->runMode());
|
||||
m_profiler->addDependency(this);
|
||||
m_profiler->addStartDependency(this);
|
||||
}
|
||||
|
||||
void IosQmlProfilerSupport::start()
|
||||
@@ -428,7 +428,7 @@ IosDebugSupport::IosDebugSupport(RunControl *runControl)
|
||||
m_runner->setCppDebugging(isCppDebugging());
|
||||
m_runner->setQmlDebugging(isQmlDebugging() ? QmlDebug::QmlDebuggerServices : QmlDebug::NoQmlDebugServices);
|
||||
|
||||
addDependency(m_runner);
|
||||
addStartDependency(m_runner);
|
||||
}
|
||||
|
||||
void IosDebugSupport::start()
|
||||
|
||||
@@ -185,7 +185,7 @@ void IosSettingsWidget::onReset()
|
||||
|
||||
const int userInput = QMessageBox::question(this, tr("Reset"),
|
||||
tr("Do you really want to reset the contents and settings"
|
||||
" of the selected devices", "",
|
||||
" of the selected devices?", "",
|
||||
simulatorInfoList.count()));
|
||||
if (userInput == QMessageBox::No)
|
||||
return;
|
||||
@@ -243,7 +243,7 @@ void IosSettingsWidget::onDelete()
|
||||
|
||||
const int userInput = QMessageBox::question(this, tr("Delete Device"),
|
||||
tr("Do you really want to delete the selected "
|
||||
"devices", "", simulatorInfoList.count()));
|
||||
"devices?", "", simulatorInfoList.count()));
|
||||
if (userInput == QMessageBox::No)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user