summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2016-03-05 18:42:45 (GMT)
committeralbert-github <albert.tests@gmail.com>2016-03-05 18:42:45 (GMT)
commit537a1c67f316c5a9d2d4542e94a4ace439a78b3a (patch)
treebcb1e112bf676e633068b5d1e26388da584c119d /src
parent7584c292b8d65e016e8e19d7c1698ab6d0c1fdec (diff)
downloadDoxygen-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')
-rwxr-xr-xsrc/util.cpp1
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;