diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-28 13:51:16 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-28 13:51:16 (GMT) |
commit | 1f5147ee4343415bcda7ba9995d78f5923e49313 (patch) | |
tree | c6a3b112c9b603251b5e30ca4ef409eb62f34f4c /addon | |
parent | ffa8abdcd899778eeda66cb425c6d54ac9764f78 (diff) | |
download | Doxygen-1f5147ee4343415bcda7ba9995d78f5923e49313.zip Doxygen-1f5147ee4343415bcda7ba9995d78f5923e49313.tar.gz Doxygen-1f5147ee4343415bcda7ba9995d78f5923e49313.tar.bz2 |
Bug 704973 - Doxywizard can't show file names using non-ASCII(Unicode)
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxywizard/doxywizard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp index 22e2384..11bd8f2 100644 --- a/addon/doxywizard/doxywizard.cpp +++ b/addon/doxywizard/doxywizard.cpp @@ -483,7 +483,7 @@ void MainWindow::readStdout() if (m_running) { QByteArray data = m_runProcess->readAllStandardOutput(); - QString text = QString::fromLocal8Bit(data); + QString text = QString::fromUtf8(data); if (!text.isEmpty()) { m_outputLog->append(text.trimmed()); |