diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-01-15 22:14:10 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-01-15 22:14:10 (GMT) |
commit | 76833018f203368d012b473913d9f898ef104869 (patch) | |
tree | 90c4fbbb6ff11bb2ce4188f93b5843216a4421e4 /src | |
parent | de9e2e0b72c5f460e38f0157039836fcdfb35c21 (diff) | |
parent | fd4beb272e5f1a760a71ab8d85463b8356c6f786 (diff) | |
download | Doxygen-76833018f203368d012b473913d9f898ef104869.zip Doxygen-76833018f203368d012b473913d9f898ef104869.tar.gz Doxygen-76833018f203368d012b473913d9f898ef104869.tar.bz2 |
Merge pull request #93 from albert-github/feature/bug_utf8
Wrong UTF 8 codes
Diffstat (limited to 'src')
-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"); |