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/groupdef.cpp | |
parent | e139c0246413d3803028572dcafe9f065f4c9eab (diff) | |
download | Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.zip Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.tar.gz Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.tar.bz2 |
Release-1.2.0-20000806
Diffstat (limited to 'src/groupdef.cpp')
-rw-r--r-- | src/groupdef.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp index 72529d0..fb17114 100644 --- a/src/groupdef.cpp +++ b/src/groupdef.cpp @@ -22,7 +22,7 @@ #include "filedef.h" #include "classlist.h" #include "outputlist.h" -#include "scanner.h" +#include "doc.h" #include "namespacedef.h" #include "language.h" #include "util.h" @@ -373,7 +373,7 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trDefineDocumentation()); ol.endGroupHeader(); - defineMembers.writeDocumentation(ol,name()); + defineMembers.writeDocumentation(ol,name(),this); } protoMembers.countDocMembers(); @@ -383,7 +383,7 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trFunctionPrototypeDocumentation()); ol.endGroupHeader(); - protoMembers.writeDocumentation(ol,name()); + protoMembers.writeDocumentation(ol,name(),this); } typedefMembers.countDocMembers(); @@ -393,7 +393,7 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trTypedefDocumentation()); ol.endGroupHeader(); - typedefMembers.writeDocumentation(ol,name()); + typedefMembers.writeDocumentation(ol,name(),this); } enumMembers.countDocMembers(); @@ -403,7 +403,7 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trEnumerationTypeDocumentation()); ol.endGroupHeader(); - enumMembers.writeDocumentation(ol,name()); + enumMembers.writeDocumentation(ol,name(),this); } //enumValMembers.countDocMembers(); @@ -423,7 +423,7 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trFunctionDocumentation()); ol.endGroupHeader(); - funcMembers.writeDocumentation(ol,name()); + funcMembers.writeDocumentation(ol,name(),this); } varMembers.countDocMembers(); @@ -433,7 +433,7 @@ void GroupDef::writeDocumentation(OutputList &ol) ol.startGroupHeader(); parseText(ol,theTranslator->trVariableDocumentation()); ol.endGroupHeader(); - varMembers.writeDocumentation(ol,name()); + varMembers.writeDocumentation(ol,name(),this); } endFile(ol); |