summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
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()
{