forked from qt-creator/qt-creator
Fix compilation errors
Change-Id: I6b0d4956b5dcbd13ee26c72081f77e5d8a4f219b Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
committed by
Tobias Hunger
parent
e84f7f33a6
commit
14d05eade8
@@ -2475,7 +2475,7 @@ void CdbEngine::handleExtensionMessage(char t, int token, const QByteArray &what
|
||||
const Task task(type, exception.toString(false).trimmed(),
|
||||
fileName, exception.lineNumber,
|
||||
Core::Id(Debugger::Constants::TASK_CATEGORY_DEBUGGER_RUNTIME));
|
||||
taskHub()->addTask(task);
|
||||
TaskHub::addTask(task);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -689,7 +689,7 @@ void GdbEngine::handleResponse(const QByteArray &buff)
|
||||
const Task::TaskType type = isFatalWinException(exCode) ? Task::Error : Task::Warning;
|
||||
const Task task(type, m_lastWinException, Utils::FileName(), 0,
|
||||
Core::Id(Debugger::Constants::TASK_CATEGORY_DEBUGGER_RUNTIME));
|
||||
taskHub()->addTask(task);
|
||||
TaskHub::addTask(task);
|
||||
}
|
||||
|
||||
if (data.startsWith("QMLBP:")) {
|
||||
@@ -734,7 +734,7 @@ void GdbEngine::handleResponse(const QByteArray &buff)
|
||||
.arg(m_lastMissingDebugInfo).arg(cmd),
|
||||
FileName(), 0, Core::Id(Debugger::Constants::TASK_CATEGORY_DEBUGGER_DEBUGINFO));
|
||||
|
||||
taskHub()->addTask(task);
|
||||
TaskHub::addTask(task);
|
||||
|
||||
DebugInfoTask dit;
|
||||
dit.command = cmd;
|
||||
|
||||
Reference in New Issue
Block a user