Fix compilation errors

Change-Id: I6b0d4956b5dcbd13ee26c72081f77e5d8a4f219b
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Nicolas Arnaud-Cormos
2013-08-19 12:04:51 +02:00
committed by Tobias Hunger
parent e84f7f33a6
commit 14d05eade8
2 changed files with 3 additions and 3 deletions

View File

@@ -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;
}

View File

@@ -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;