diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-08-06 15:11:00 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-08-06 15:11:00 (GMT) |
commit | c4ef46195917656ebebed63e3fab5c135d9905a2 (patch) | |
tree | aa501b0916e827fee6032245628509acc64efbba /src/outputlist.h | |
parent | 5ad8b41eb93b9ca6a4c2ce90837103f8a4e750d8 (diff) | |
download | Doxygen-c4ef46195917656ebebed63e3fab5c135d9905a2.zip Doxygen-c4ef46195917656ebebed63e3fab5c135d9905a2.tar.gz Doxygen-c4ef46195917656ebebed63e3fab5c135d9905a2.tar.bz2 |
Release-1.2.0-20000806
Diffstat (limited to 'src/outputlist.h')
-rw-r--r-- | src/outputlist.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/outputlist.h b/src/outputlist.h index b651546..b177f02 100644 --- a/src/outputlist.h +++ b/src/outputlist.h @@ -203,11 +203,10 @@ class OutputList { forall(&OutputGenerator::startMemberDoc,clName,memName,anchor,title); } void endMemberDoc() { forall(&OutputGenerator::endMemberDoc); } - void startDoxyAnchor(const char *fn, const char *cn, - const char *anchor,const char *name) - { forall(&OutputGenerator::startDoxyAnchor,fn,cn,anchor,name); } - void endDoxyAnchor() - { forall(&OutputGenerator::endDoxyAnchor); } + void startDoxyAnchor(const char *fName,const char *anchor, const char *name) + { forall(&OutputGenerator::startDoxyAnchor,fName,anchor,name); } + void endDoxyAnchor(const char *fn,const char *anchor) + { forall(&OutputGenerator::endDoxyAnchor,fn,anchor); } void startCodeAnchor(const char *label) { forall(&OutputGenerator::startCodeAnchor,label); } void endCodeAnchor() @@ -332,8 +331,10 @@ class OutputList { forall(&OutputGenerator::writeFormula,n,t); } void writeNonBreakableSpace() { forall(&OutputGenerator::writeNonBreakableSpace); } - void writeImage(const char *n,const char *w,const char *h) - { forall(&OutputGenerator::writeImage,n,w,h); } + void startImage(const char *n,const char *s,bool c) + { forall(&OutputGenerator::startImage,n,s,c); } + void endImage(bool c) + { forall(&OutputGenerator::endImage,c); } void startDescTable() { forall(&OutputGenerator::startDescTable); } |