diff options
author | albert-github <albert.tests@gmail.com> | 2016-03-05 18:42:45 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2016-03-05 18:42:45 (GMT) |
commit | 537a1c67f316c5a9d2d4542e94a4ace439a78b3a (patch) | |
tree | bcb1e112bf676e633068b5d1e26388da584c119d /src/util.cpp | |
parent | 7584c292b8d65e016e8e19d7c1698ab6d0c1fdec (diff) | |
download | Doxygen-537a1c67f316c5a9d2d4542e94a4ace439a78b3a.zip Doxygen-537a1c67f316c5a9d2d4542e94a4ace439a78b3a.tar.gz Doxygen-537a1c67f316c5a9d2d4542e94a4ace439a78b3a.tar.bz2 |
Bug 763104 - hyperref link label drop underscores
underscores were not escaped in the content for "PDF summary/index in the left tab"
Diffstat (limited to 'src/util.cpp')
-rwxr-xr-x | src/util.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp index 592d0b2..91f83ae 100755 --- a/src/util.cpp +++ b/src/util.cpp @@ -6737,6 +6737,7 @@ QCString latexEscapePDFString(const char *s) case '\\': t << "\\textbackslash{}"; break; case '{': t << "\\{"; break; case '}': t << "\\}"; break; + case '_': t << "\\_"; break; default: t << c; break; |