diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-10-13 21:02:01 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-10-13 21:02:01 (GMT) |
commit | 8c34ac933a25692869020f02f15b331a17c4e45b (patch) | |
tree | 16de40b02cf412339672d65638606a3004608f7c /src/doxygen.cpp | |
parent | eb9911da9adbb91449d7fcad9bbc33a8152e1727 (diff) | |
download | Doxygen-8c34ac933a25692869020f02f15b331a17c4e45b.zip Doxygen-8c34ac933a25692869020f02f15b331a17c4e45b.tar.gz Doxygen-8c34ac933a25692869020f02f15b331a17c4e45b.tar.bz2 |
Release-1.2.18-20021013
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 14ff70f..cf0dadc 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -1240,6 +1240,7 @@ static MemberDef *addVariableToClass( md->setInitializer(root->initializer); md->setMaxInitLines(root->initLines); md->setMemberGroupId(root->mGrpId); + md->setMemberSpecifiers(root->memSpec); addMemberToGroups(root,md); //if (root->mGrpId!=-1) //{ @@ -1670,6 +1671,8 @@ void buildVarList(Entry *root) mtype=MemberDef::Friend; else if (root->mtype==Property) mtype=MemberDef::Property; + else if (root->mtype==Event) + mtype=MemberDef::Event; else mtype=MemberDef::Variable; @@ -1910,8 +1913,6 @@ static void buildFunctionList(Entry *root) root->startLine, root->bodyLine, root->tArgLists ? (int)root->tArgLists->count() : -1, - //root->tArgList ? (int)root->tArgList->count() : -1, - //root->mtArgList ? (int)root->mtArgList->count() : -1, root->mGrpId, root->memSpec, root->proto, @@ -2053,13 +2054,7 @@ static void buildFunctionList(Entry *root) { md->setBriefDescription(root->brief,root->briefFile,root->briefLine); } - // merge body definitions - if (md->getStartBodyLine()==-1 && root->bodyLine!=-1) - { - md->setBodySegment(root->bodyLine,root->endBodyLine); - bool ambig; - md->setBodyDef(findFileDef(Doxygen::inputNameDict,root->fileName,ambig)); - } + md->addSectionsToDefinition(root->anchors); // merge ingroup specifiers @@ -2267,6 +2262,7 @@ static void findFriends() { fmd->setBriefDescription(mmd->briefDescription(),mmd->briefFile(),mmd->briefLine()); } + //printf("body mmd %d fmd %d\n",mmd->getStartBodyLine(),fmd->getStartBodyLine()); if (mmd->getStartBodyLine()==-1 && fmd->getStartBodyLine()!=-1) { mmd->setBodySegment(fmd->getStartBodyLine(),fmd->getEndBodyLine()); @@ -4727,6 +4723,7 @@ static void findMember(Entry *root, { md->setBodySegment(rmd->getStartBodyLine(),rmd->getEndBodyLine()); md->setBodyDef(rmd->getBodyDef()); + md->setBodyMember(rmd); } } } @@ -7888,7 +7885,7 @@ void generateOutput() } if (Config_getBool("GENERATE_PERLMOD")) { - msg("Generating PerlMod output...\n"); + msg("Generating Perl module output...\n"); generatePerlMod(); } if (Config_getBool("GENERATE_HTMLHELP") && !Config_getString("HHC_LOCATION").isEmpty()) |