diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-09-22 20:13:01 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-09-22 20:13:01 (GMT) |
commit | 7cdb9679aa5e9baf87772f2c7799ff7b5fe01207 (patch) | |
tree | 5da2b20b68f07e1ce10d01b7102a959409be641d /src/xmlgen.cpp | |
parent | 51502afe30860a1b56b0bcb9ede3a6d9b62fdda2 (diff) | |
download | Doxygen-7cdb9679aa5e9baf87772f2c7799ff7b5fe01207.zip Doxygen-7cdb9679aa5e9baf87772f2c7799ff7b5fe01207.tar.gz Doxygen-7cdb9679aa5e9baf87772f2c7799ff7b5fe01207.tar.bz2 |
Release-1.3.4
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r-- | src/xmlgen.cpp | 4 |
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() { |