diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-08-06 15:11:00 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-08-06 15:11:00 (GMT) |
commit | ef99315d71b4b8e2c027033665bcc1244f43ca15 (patch) | |
tree | aa501b0916e827fee6032245628509acc64efbba /src/htmlgen.h | |
parent | e139c0246413d3803028572dcafe9f065f4c9eab (diff) | |
download | Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.zip Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.tar.gz Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.tar.bz2 |
Release-1.2.0-20000806
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r-- | src/htmlgen.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h index 780c7d7..9fd1a84 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -142,9 +142,8 @@ class HtmlGenerator : public OutputGenerator void endMemberDoc(); //void writeDoxyAnchor(const char *fName,const char *clName, // const char *anchor,const char *name); - void startDoxyAnchor(const char *fName,const char *clName, - const char *anchor,const char *name); - void endDoxyAnchor(); + void startDoxyAnchor(const char *fName,const char *anchor,const char *name); + void endDoxyAnchor(const char *fName,const char *anchor); void startCodeAnchor(const char *label) { t << "<a name=\"" << label << "\"></a>"; } void endCodeAnchor() { } void writeLatexSpacing() {} @@ -201,7 +200,8 @@ class HtmlGenerator : public OutputGenerator void endQuickIndexItem(); void writeFormula(const char *,const char *); void writeNonBreakableSpace() { t << " "; } - void writeImage(const char *,const char *,const char *); + void startImage(const char *,const char *,bool); + void endImage(bool); void startDescTable() { t << "<table border=0 cellspacing=2 cellpadding=0>" << endl; } |