diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-05-26 19:08:11 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-05-26 19:08:11 (GMT) |
commit | f309c3c0e7c1cf29df6b850e19d647e93a30ce28 (patch) | |
tree | d4b609faf73bfab7a9ddbbbeceb63eb296ce6243 /src/doxygen.cpp | |
parent | 6e92a0d3db80c3d93a35efbe52d45c73b8303e45 (diff) | |
download | Doxygen-f309c3c0e7c1cf29df6b850e19d647e93a30ce28.zip Doxygen-f309c3c0e7c1cf29df6b850e19d647e93a30ce28.tar.gz Doxygen-f309c3c0e7c1cf29df6b850e19d647e93a30ce28.tar.bz2 |
Release-1.3.7-20040526
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index a91a64e..78040ca 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -6497,13 +6497,14 @@ static void generatePageDocs() outputList->endSection(si->label,si->type); } outputList->startTextBlock(); - outputList->parseDoc(pd->docFile(), - pd->docLine(), - pd->getOuterScope(),0, - pd->documentation(), - TRUE, // index words - FALSE // not an example - /*,pd->sectionDict*/); + outputList->parseDoc(pd->docFile(), // fileName + pd->docLine(), // startLine + pd, // context + 0, // memberdef + pd->documentation(), // docStr + TRUE, // index words + FALSE // not an example + ); outputList->endTextBlock(); endFile(*outputList); //outputList->enable(OutputGenerator::Man); @@ -6591,7 +6592,7 @@ static void generateExampleDocs() endTitle(*outputList,n,0); outputList->parseDoc(pd->docFile(), // file pd->docLine(), // startLine - pd->getOuterScope(), // context + pd, // context 0, // memberDef pd->documentation()+"\n\\include "+pd->name(), // docs TRUE, // index words |