summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Fultz <jfultz@wolfram.com>2015-08-24 00:52:49 -0500
committerJohn Fultz <jfultz@wolfram.com>2015-08-24 00:52:49 -0500
commit8c7ffef1b6c669592e979fb6038dd634df7f95fc (patch)
tree94baa6ca75100f652da4d5a4990aa4ac0db10fb3
parentd1f5f768764d439f02520d9c6c017fcd3ae96b83 (diff)
Fix encoding of HTML output.
Should be UTF8. Thanks to Vlado Makys for pointing this out.
-rw-r--r--quacker/graphicalreporter.cpp1
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"));
}