diff options
author | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 1999-12-15 19:42:00 (GMT) |
---|---|---|
committer | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 1999-12-15 19:42:00 (GMT) |
commit | e37828267bfc6c76a5b01208dcdb676a3aa580f9 (patch) | |
tree | e1e96dcb9bbad928271e0546023ea0a9841641b6 /src/filedef.cpp | |
parent | 74cc4d70240d09e10c9da94c0537670fc287a85e (diff) | |
download | Doxygen-e37828267bfc6c76a5b01208dcdb676a3aa580f9.zip Doxygen-e37828267bfc6c76a5b01208dcdb676a3aa580f9.tar.gz Doxygen-e37828267bfc6c76a5b01208dcdb676a3aa580f9.tar.bz2 |
mods for doxygen-0.49-991205
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r-- | src/filedef.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp index a941e71..1e96515 100644 --- a/src/filedef.cpp +++ b/src/filedef.cpp @@ -202,7 +202,8 @@ void FileDef::writeDocumentation(OutputList &ol) //doc=doc.stripWhiteSpace(); //int bl=brief.length(); //int dl=doc.length(); - if (!briefDescription().isEmpty() || !documentation().isEmpty() || bodyLine!=-1) + if (!briefDescription().isEmpty() || !documentation().isEmpty() || + startBodyLine!=-1) { ol.writeRuler(); bool latexOn = ol.isEnabled(OutputGenerator::Latex); @@ -329,7 +330,7 @@ void FileDef::writeSource(OutputList &ol) //parseText(ol,theTranslator->trVerbatimText(incFile->name())); //ol.writeRuler(); ol.startCodeFragment(); - parseCode(ol,name(),fileToString(absFilePath()),FALSE,0,this); + parseCode(ol,0,fileToString(absFilePath()),FALSE,0,this); ol.endCodeFragment(); endFile(ol); ol.enableAll(); |