diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:42:00 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:42:00 (GMT) |
commit | df5aeefd51095ad5b1f5fe1bf563a7302f93feeb (patch) | |
tree | e1e96dcb9bbad928271e0546023ea0a9841641b6 /src/filedef.cpp | |
parent | dc2968f7b44b1a219a0695ba80c63cd0d7da0ef1 (diff) | |
download | Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.zip Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.tar.gz Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.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(); |