summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2003-09-22 20:13:01 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2003-09-22 20:13:01 (GMT)
commitb740d594fddfb880f5800b991e408bdb42a3f354 (patch)
tree5da2b20b68f07e1ce10d01b7102a959409be641d /src/xmlgen.cpp
parent640babbbb6882ce1b1e52563c0617e2f4213eeb8 (diff)
downloadDoxygen-b740d594fddfb880f5800b991e408bdb42a3f354.zip
Doxygen-b740d594fddfb880f5800b991e408bdb42a3f354.tar.gz
Doxygen-b740d594fddfb880f5800b991e408bdb42a3f354.tar.bz2
Release-1.3.4
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index 757e035..1ba6fe1 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -220,7 +220,7 @@ class XMLCodeGenerator : public BaseCodeDocInterface
writeXMLCodeString(m_t,text);
}
void writeCodeLink(const char *ref,const char *file,
- const char *anchor,const char *text)
+ const char *anchor,const char *name)
{
XML_DB(("(writeCodeLink)\n"));
if (m_insideCodeLine && !m_insideSpecialHL && m_normalHLNeedStartTag)
@@ -228,7 +228,7 @@ class XMLCodeGenerator : public BaseCodeDocInterface
m_t << "<highlight class=\"normal\">";
m_normalHLNeedStartTag=FALSE;
}
- writeXMLLink(m_t,ref,file,anchor,text);
+ writeXMLLink(m_t,ref,file,anchor,name);
}
void startCodeLine()
{