diff options
author | albert-github <albert.tests@gmail.com> | 2014-01-15 12:11:30 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-01-15 12:11:30 (GMT) |
commit | fd4beb272e5f1a760a71ab8d85463b8356c6f786 (patch) | |
tree | 90c4fbbb6ff11bb2ce4188f93b5843216a4421e4 | |
parent | de9e2e0b72c5f460e38f0157039836fcdfb35c21 (diff) | |
download | Doxygen-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
-rw-r--r-- | src/util.cpp | 4 |
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"); |