forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/5.0'
Conflicts: src/libs/utils/processreaper.cpp src/plugins/clangcodemodel/clangmodelmanagersupport.cpp src/plugins/cmakeprojectmanager/cmakeprocess.cpp Change-Id: Ie248bcb02a80f3e02ab19d73033ce2ba31e7fd83
This commit is contained in:
@@ -544,10 +544,12 @@ void AndroidDeployQtStep::stdError(const QString &line)
|
||||
return;
|
||||
|
||||
if (newOutput.startsWith("warning", Qt::CaseInsensitive)
|
||||
|| newOutput.startsWith("note", Qt::CaseInsensitive))
|
||||
|| newOutput.startsWith("note", Qt::CaseInsensitive)
|
||||
|| newOutput.startsWith(QLatin1String("All files should be loaded."))) {
|
||||
TaskHub::addTask(DeploymentTask(Task::Warning, newOutput));
|
||||
else if (newOutput != QLatin1String("All files should be loaded. Notifying the device."))
|
||||
} else {
|
||||
TaskHub::addTask(DeploymentTask(Task::Error, newOutput));
|
||||
}
|
||||
}
|
||||
|
||||
AndroidDeployQtStep::DeployErrorCode AndroidDeployQtStep::parseDeployErrors(
|
||||
|
||||
Reference in New Issue
Block a user