diff options
author | John Fultz <jfultz@wolfram.com> | 2015-08-24 00:52:49 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2015-08-24 00:52:49 -0500 |
commit | 8c7ffef1b6c669592e979fb6038dd634df7f95fc (patch) | |
tree | 94baa6ca75100f652da4d5a4990aa4ac0db10fb3 /quacker/graphicalreporter.cpp | |
parent | d1f5f768764d439f02520d9c6c017fcd3ae96b83 (diff) |
Fix encoding of HTML output.
Should be UTF8. Thanks to Vlado Makys for pointing
this out.
Diffstat (limited to 'quacker/graphicalreporter.cpp')
-rw-r--r-- | quacker/graphicalreporter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quacker/graphicalreporter.cpp b/quacker/graphicalreporter.cpp index f7c9ce7..2fb0842 100644 --- a/quacker/graphicalreporter.cpp +++ b/quacker/graphicalreporter.cpp @@ -227,5 +227,6 @@ void GraphicalReporter::openIndex() m_indexStream.setDevice(&m_indexFile); } + m_indexStream.setCodec(QTextCodec::codecForName("UTF-8")); } |