Build fix on windows

This commit is contained in:
Tobias Hunger
2010-07-08 14:51:31 +02:00
parent d70fe1eb61
commit fa35bbc5ef

View File

@@ -1404,7 +1404,7 @@ bool CdbEnginePrivate::setCDBThreadId(unsigned long threadId, QString *errorMess
hr = interfaces().debugSystemObjects->SetCurrentThreadId(threadId);
if (FAILED(hr)) {
*errorMessage = QString::fromLatin1("Failed to change to from thread %1 to %2: SetCurrentThreadId() failed: %3").
arg(currentThreadId).arg(threadId).arg(CdbCore::msgEngineComResult(hr));
arg(currentThreadId).arg(threadId).arg(CdbCore::msgDebugEngineComResult(hr));
return false;
}
const QString msg = CdbEngine::tr("Changing threads: %1 -> %2").arg(currentThreadId).arg(threadId);