diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-05-28 19:46:08 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-05-28 19:46:08 (GMT) |
commit | 832e08dcc70203d84f75249583a95fa172492aa2 (patch) | |
tree | 1f7723f69aa2917d2408894c68e7150f7b7ff3d5 /src/htmlgen.h | |
parent | f38608d4bec002a5051c860a599dd4d5229a9671 (diff) | |
download | Doxygen-832e08dcc70203d84f75249583a95fa172492aa2.zip Doxygen-832e08dcc70203d84f75249583a95fa172492aa2.tar.gz Doxygen-832e08dcc70203d84f75249583a95fa172492aa2.tar.bz2 |
Release-1.1.3-20000528
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r-- | src/htmlgen.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h index 7dc63e0..e9f6cf5 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -111,7 +111,7 @@ class HtmlGenerator : public OutputGenerator void endMemberDescription(); void writeRuler() { t << "<hr>"; } - void writeAnchor(const char *name) + void writeAnchor(const char *,const char *name) { t << "<a name=\"" << name <<"\"></a>"; } void startCodeFragment() { t << "<div class=\"fragment\"><pre>"; } void endCodeFragment() { t << "</div></pre>"; } // <- I know this is @@ -142,8 +142,8 @@ class HtmlGenerator : public OutputGenerator void startDoxyAnchor(const char *fName,const char *clName, const char *anchor,const char *name); void endDoxyAnchor(); - void startCodeAnchor(const char *label) { t << "<a name=\"" << label << "\">"; } - void endCodeAnchor() { t << "</a>"; } + void startCodeAnchor(const char *label) { t << "<a name=\"" << label << "\"></a>"; } + void endCodeAnchor() { } void writeLatexSpacing() {} //void writeLatexLabel(const char *,const char *) {} void writeStartAnnoItem(const char *type,const char *file, |