forked from qt-creator/qt-creator
Debugger/Console stub: Pass on main thread id on Windows.
Introduce private class to utils/ConsoloProcess as not to expose <windows.h> from its header. Task-number: QTCREATORBUG-1020
This commit is contained in:
@@ -66,9 +66,9 @@ QString ConsoleProcess::msgCannotCreateTempDir(const QString & dir, const QStrin
|
||||
return tr("Cannot create temporary directory '%1': %2").arg(dir, why);
|
||||
}
|
||||
|
||||
QString ConsoleProcess::msgUnexpectedOutput()
|
||||
QString ConsoleProcess::msgUnexpectedOutput(const QByteArray &what)
|
||||
{
|
||||
return tr("Unexpected output from helper program.");
|
||||
return tr("Unexpected output from helper program (%1).").arg(QString::fromAscii(what));
|
||||
}
|
||||
|
||||
QString ConsoleProcess::msgCannotChangeToWorkDir(const QString & dir, const QString &why)
|
||||
|
||||
Reference in New Issue
Block a user