summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-05-19 12:11:23 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-05-19 12:11:23 (GMT)
commit7e1fa1f27b1d85172af518acc24b8bc68a0f1b29 (patch)
tree58d7a64919b99cc76fdc7120ae5d0407f3163a67 /src/latexgen.cpp
parentc11926b2549660b7eb6b73aa4bf2096e56a6f8dd (diff)
downloadDoxygen-7e1fa1f27b1d85172af518acc24b8bc68a0f1b29.zip
Doxygen-7e1fa1f27b1d85172af518acc24b8bc68a0f1b29.tar.gz
Doxygen-7e1fa1f27b1d85172af518acc24b8bc68a0f1b29.tar.bz2
Release-1.8.1
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index cdee85b..c6bafad 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -1662,7 +1662,9 @@ void LatexGenerator::writeCodeLink(const char *ref,const char *f,
if (f) t << stripPath(f);
if (f && anchor) t << "_";
if (anchor) t << anchor;
- t << "}{" << name << "}";
+ t << "}{";
+ codify(name);
+ t << "}";
}
else
{
@@ -2516,7 +2518,7 @@ void LatexGenerator::writeLineNumber(const char *ref,const char *fileName,const
}
}
-void LatexGenerator::startCodeLine()
+void LatexGenerator::startCodeLine(bool)
{
col=0;
}