forked from qt-creator/qt-creator
Valgrind: Use QString for processOutput signal
Change-Id: I446f1a06b2c00280679dd09cd1818c1dd69c7e11 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -197,7 +197,7 @@ void ValgrindProcess::handleReadyReadStandardError()
|
||||
else
|
||||
b = m_remote.m_process->readAllStandardError();
|
||||
if (!b.isEmpty())
|
||||
emit processOutput(b, Utils::StdErrFormat);
|
||||
emit processOutput(QString::fromLocal8Bit(b), Utils::StdErrFormat);
|
||||
}
|
||||
|
||||
void ValgrindProcess::handleReadyReadStandardOutput()
|
||||
@@ -208,7 +208,7 @@ void ValgrindProcess::handleReadyReadStandardOutput()
|
||||
else
|
||||
b = m_remote.m_process->readAllStandardOutput();
|
||||
if (!b.isEmpty())
|
||||
emit processOutput(b, Utils::StdOutFormat);
|
||||
emit processOutput(QString::fromLocal8Bit(b), Utils::StdOutFormat);
|
||||
}
|
||||
|
||||
/// Remote
|
||||
|
||||
Reference in New Issue
Block a user