diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-01-25 21:11:43 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-01-25 21:11:43 (GMT) |
commit | 3ced61065d252f4f8a3cf5f310f30094d91ac83c (patch) | |
tree | 5e3ff29c80e73d69c88e8b33d670753c31eed4b2 /src/latexdocvisitor.cpp | |
parent | 29348f280d674693e74e30ae55ca63ab3b97372e (diff) | |
download | Doxygen-3ced61065d252f4f8a3cf5f310f30094d91ac83c.zip Doxygen-3ced61065d252f4f8a3cf5f310f30094d91ac83c.tar.gz Doxygen-3ced61065d252f4f8a3cf5f310f30094d91ac83c.tar.bz2 |
Release-1.3.5-20040125
Diffstat (limited to 'src/latexdocvisitor.cpp')
-rw-r--r-- | src/latexdocvisitor.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp index 16998c9..17fc3cc 100644 --- a/src/latexdocvisitor.cpp +++ b/src/latexdocvisitor.cpp @@ -294,7 +294,7 @@ void LatexDocVisitor::visit(DocVerbatim *s) void LatexDocVisitor::visit(DocAnchor *anc) { if (m_hide) return; - m_t << "\\label{" << anc->anchor() << "}" << endl; + m_t << "\\label{" << anc->file() << "_" << anc->anchor() << "}" << endl; if (!anc->file().isEmpty() && Config_getBool("PDF_HYPERLINKS")) { m_t << "\\hypertarget{" << anc->file() << "_" << anc->anchor() @@ -526,7 +526,7 @@ void LatexDocVisitor::visitPre(DocSection *s) } m_t << "\\" << getSectionName(s->level()) << "{"; filter(s->title()); - m_t << "}\\label{" << s->anchor() << "}" << endl; + m_t << "}\\label{" << s->file() << "_" << s->anchor() << "}" << endl; } void LatexDocVisitor::visitPost(DocSection *) @@ -810,7 +810,7 @@ void LatexDocVisitor::visitPre(DocSecRefItem *) void LatexDocVisitor::visitPost(DocSecRefItem *ref) { if (m_hide) return; - m_t << "}{\\ref{" << ref->anchor() << "}}{}" << endl; + m_t << "}{\\ref{" << ref->file() << "_" << ref->anchor() << "}}{}" << endl; } void LatexDocVisitor::visitPre(DocSecRefList *) @@ -976,7 +976,8 @@ void LatexDocVisitor::endLink(const QString &ref,const QString &file,const QStri m_t << "}"; if (ref.isEmpty() && !Config_getBool("PDF_HYPERLINKS")) { - m_t << "{\\rm ("; filter(theTranslator->trPageAbbreviation()); + m_t << "{\\rm ("; + filter(theTranslator->trPageAbbreviation()); m_t << "\\,\\pageref{" << file; if (!anchor.isEmpty()) m_t << "_" << anchor; m_t << "})}"; |