Commit 1f5147ee authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 704973 - Doxywizard can't show file names using non-ASCII(Unicode)

parent ffa8abdc
...@@ -483,7 +483,7 @@ void MainWindow::readStdout() ...@@ -483,7 +483,7 @@ void MainWindow::readStdout()
if (m_running) if (m_running)
{ {
QByteArray data = m_runProcess->readAllStandardOutput(); QByteArray data = m_runProcess->readAllStandardOutput();
QString text = QString::fromLocal8Bit(data); QString text = QString::fromUtf8(data);
if (!text.isEmpty()) if (!text.isEmpty())
{ {
m_outputLog->append(text.trimmed()); m_outputLog->append(text.trimmed());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment