diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2016-10-23 11:15:37 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2016-10-23 11:17:47 (GMT) |
commit | d571efb062fbe17d7257f3971e3db6c9cba833d0 (patch) | |
tree | a1efcf15f2fdcc837bca9ebf303cf14f46bfa53b /src/latexdocvisitor.cpp | |
parent | 6300c03b6201ca7981388a6d3c01486f8a8adba0 (diff) | |
download | Doxygen-d571efb062fbe17d7257f3971e3db6c9cba833d0.zip Doxygen-d571efb062fbe17d7257f3971e3db6c9cba833d0.tar.gz Doxygen-d571efb062fbe17d7257f3971e3db6c9cba833d0.tar.bz2 |
Bug 773231 - Underscores in type or member name cause unwanted hyphenation in PDF output Data Fields
Diffstat (limited to 'src/latexdocvisitor.cpp')
-rw-r--r-- | src/latexdocvisitor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp index 2b590ed..048deb7 100644 --- a/src/latexdocvisitor.cpp +++ b/src/latexdocvisitor.cpp @@ -386,8 +386,8 @@ void LatexDocVisitor::visit(DocAnchor *anc) m_t << "\\label{" << stripPath(anc->file()) << "_" << anc->anchor() << "}%" << endl; if (!anc->file().isEmpty() && Config_getBool(PDF_HYPERLINKS)) { - m_t << "\\hypertarget{" << stripPath(anc->file()) << "_" << anc->anchor() - << "}{}%" << endl; + m_t << "\\Hypertarget{" << stripPath(anc->file()) << "_" << anc->anchor() + << "}%" << endl; } } |