forked from qt-creator/qt-creator
projectexplorer: use QString::fromLocal8Bit instead fromAscii
Patch from Asaki Takumi. Reviewed-by: Oswald Buddenhagen
This commit is contained in:
@@ -147,7 +147,7 @@ void WinGuiProcess::run()
|
||||
switch (ret) {
|
||||
case WAIT_OBJECT_0 + 0:
|
||||
if (*processId == m_pid->dwProcessId)
|
||||
emit receivedDebugOutput(QString::fromAscii(message));
|
||||
emit receivedDebugOutput(QString::fromLocal8Bit(message));
|
||||
SetEvent(bufferReadyEvent);
|
||||
break;
|
||||
case WAIT_OBJECT_0 + 1:
|
||||
|
Reference in New Issue
Block a user