Valgrind: Use QString for processOutput signal

Change-Id: I446f1a06b2c00280679dd09cd1818c1dd69c7e11
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Orgad Shaneh
2014-05-04 23:06:26 +03:00
committed by hjk
parent b9c2475726
commit 4dfa08c22f
6 changed files with 13 additions and 13 deletions

View File

@@ -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