summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 21b656b..99eb97d 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -599,9 +599,13 @@ void HtmlGenerator::writeStyleInfo(int part)
}
void HtmlGenerator::startDoxyAnchor(const char *,const char *,
- const char *anchor, const char *name)
+ const char *anchor, const char *name,
+ const char *args)
{
- t << "<a class=\"anchor\" name=\"" << anchor << "\" doxytag=\"" << name << "\"></a>";
+ t << "<a class=\"anchor\" name=\"" << anchor << "\"></a>";
+ t << "<!-- doxytag: member=<" << name << "> ref=<" << anchor << "> args=<";
+ docify(args);
+ t << "> -->";
}
void HtmlGenerator::endDoxyAnchor(const char *,const char *)