summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2014-01-15 12:11:30 (GMT)
committeralbert-github <albert.tests@gmail.com>2014-01-15 12:11:30 (GMT)
commitfd4beb272e5f1a760a71ab8d85463b8356c6f786 (patch)
tree90c4fbbb6ff11bb2ce4188f93b5843216a4421e4 /src/util.cpp
parentde9e2e0b72c5f460e38f0157039836fcdfb35c21 (diff)
downloadDoxygen-fd4beb272e5f1a760a71ab8d85463b8356c6f786.zip
Doxygen-fd4beb272e5f1a760a71ab8d85463b8356c6f786.tar.gz
Doxygen-fd4beb272e5f1a760a71ab8d85463b8356c6f786.tar.bz2
Wrong UTF 8 codes
The utf-8 code for eta was identical to the code for theta and the code for Prime was identical to the one for prime
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 54be42d..f38f108 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -5765,7 +5765,7 @@ QCString convertCharEntitiesToUTF8(const QCString &s)
entityMap.insert("delta", "\xCE\xB4");
entityMap.insert("epsilon", "\xCE\xB5");
entityMap.insert("zeta", "\xCE\xB6");
- entityMap.insert("eta", "\xCE\xB8");
+ entityMap.insert("eta", "\xCE\xB7");
entityMap.insert("theta", "\xCE\xB8");
entityMap.insert("iota", "\xCE\xB9");
entityMap.insert("kappa", "\xCE\xBA");
@@ -5786,7 +5786,7 @@ QCString convertCharEntitiesToUTF8(const QCString &s)
entityMap.insert("sect", "\xC2\xA7");
entityMap.insert("deg", "\xC2\xB0");
entityMap.insert("prime", "\xE2\x80\xB2");
- entityMap.insert("Prime", "\xE2\x80\xB2");
+ entityMap.insert("Prime", "\xE2\x80\xB3");
entityMap.insert("infin", "\xE2\x88\x9E");
entityMap.insert("empty", "\xE2\x88\x85");
entityMap.insert("plusmn", "\xC2\xB1");