diff options
Diffstat (limited to 'src/outputlist.h')
-rw-r--r-- | src/outputlist.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/outputlist.h b/src/outputlist.h index 96e07aa..3cc0b44 100644 --- a/src/outputlist.h +++ b/src/outputlist.h @@ -407,10 +407,10 @@ class OutputList : public OutputDocInterface { forall(&OutputGenerator::startParameterType,first); } void endParameterType() { forall(&OutputGenerator::endParameterType); } - void startParameterName() - { forall(&OutputGenerator::startParameterName); } - void endParameterName(bool last,bool emptyList) - { forall(&OutputGenerator::endParameterName,last,emptyList); } + void startParameterName(bool one) + { forall(&OutputGenerator::startParameterName,one); } + void endParameterName(bool last,bool one) + { forall(&OutputGenerator::endParameterName,last,one); } void startParameterList() { forall(&OutputGenerator::startParameterList); } void endParameterList() |