summaryrefslogtreecommitdiffstats
path: root/src/outputlist.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-08-06 15:11:00 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-08-06 15:11:00 (GMT)
commitc4ef46195917656ebebed63e3fab5c135d9905a2 (patch)
treeaa501b0916e827fee6032245628509acc64efbba /src/outputlist.h
parent5ad8b41eb93b9ca6a4c2ce90837103f8a4e750d8 (diff)
downloadDoxygen-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.h15
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); }