summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-04-12 10:06:50 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-04-12 10:06:50 (GMT)
commit7b83e1ef3743aa06a5ccbcd78a28fc14f6d25049 (patch)
tree3b224140a04108103ef1d23882fc0272299d9f1f
parent298ab30b2a2aa0936f4683c9366afd44c00adc60 (diff)
parentd3e7b06f3a82780083e27bb83360ed9496df9f8d (diff)
downloadDoxygen-7b83e1ef3743aa06a5ccbcd78a28fc14f6d25049.zip
Doxygen-7b83e1ef3743aa06a5ccbcd78a28fc14f6d25049.tar.gz
Doxygen-7b83e1ef3743aa06a5ccbcd78a28fc14f6d25049.tar.bz2
Merge pull request #329 from albert-github/feature/bug_latex_unreach
Remove unreachable code
-rw-r--r--src/latexdocvisitor.cpp21
1 files changed, 5 insertions, 16 deletions
diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp
index 0699960..37c2130 100644
--- a/src/latexdocvisitor.cpp
+++ b/src/latexdocvisitor.cpp
@@ -1578,22 +1578,11 @@ void LatexDocVisitor::startLink(const QCString &ref,const QCString &file,const Q
{
if (ref.isEmpty() && Config_getBool("PDF_HYPERLINKS")) // internal PDF link
{
- if (ref.isEmpty()) {
- m_t << "\\hyperlink{";
- if (!file.isEmpty()) m_t << stripPath(file);
- if (!file.isEmpty() && !anchor.isEmpty()) m_t << "_";
- if (!anchor.isEmpty()) m_t << anchor;
- m_t << "}{";
- }
- else
- {
- QCString *dest;
- m_t << "\\href{";
- if ((dest=Doxygen::tagDestinationDict[ref])) m_t << *dest << "/";
- if (!file.isEmpty()) m_t << file << Doxygen::htmlFileExtension;
- if (!anchor.isEmpty()) m_t << "#" << anchor;
- m_t << "}{";
- }
+ m_t << "\\hyperlink{";
+ if (!file.isEmpty()) m_t << stripPath(file);
+ if (!file.isEmpty() && !anchor.isEmpty()) m_t << "_";
+ if (!anchor.isEmpty()) m_t << anchor;
+ m_t << "}{";
}
else if (ref.isEmpty()) // internal non-PDF link
{