projectexplorer: use QString::fromLocal8Bit instead fromAscii

Patch from Asaki Takumi.

Reviewed-by: Oswald Buddenhagen
This commit is contained in:
hjk
2009-04-02 11:01:09 +02:00
parent 47995286b5
commit 0f4aa33596

View File

@@ -147,7 +147,7 @@ void WinGuiProcess::run()
switch (ret) { switch (ret) {
case WAIT_OBJECT_0 + 0: case WAIT_OBJECT_0 + 0:
if (*processId == m_pid->dwProcessId) if (*processId == m_pid->dwProcessId)
emit receivedDebugOutput(QString::fromAscii(message)); emit receivedDebugOutput(QString::fromLocal8Bit(message));
SetEvent(bufferReadyEvent); SetEvent(bufferReadyEvent);
break; break;
case WAIT_OBJECT_0 + 1: case WAIT_OBJECT_0 + 1: