diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2001-08-19 18:13:14 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2001-08-19 18:13:14 (GMT) |
commit | 8f7c9d9ba3b6c4e87c87deb6775d4bf642939e77 (patch) | |
tree | 3ff0575884709cdc92f9e462441672f3549ab054 /src/mangen.cpp | |
parent | b5cbb79d114ed13945bc882ac8eef1c2be967bbf (diff) | |
download | Doxygen-8f7c9d9ba3b6c4e87c87deb6775d4bf642939e77.zip Doxygen-8f7c9d9ba3b6c4e87c87deb6775d4bf642939e77.tar.gz Doxygen-8f7c9d9ba3b6c4e87c87deb6775d4bf642939e77.tar.bz2 |
Release-1.2.9-20010819
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r-- | src/mangen.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp index 36d23e1..b721a44 100644 --- a/src/mangen.cpp +++ b/src/mangen.cpp @@ -308,7 +308,17 @@ void ManGenerator::writeChar(char c) paragraph=FALSE; } -void ManGenerator::startDescList() +void ManGenerator::startDescList(SectionTypes) +{ + if (!firstCol) + { t << endl << ".PP" << endl; + firstCol=TRUE; paragraph=TRUE; + col=0; + } + paragraph=FALSE; +} + +void ManGenerator::startParamList(ParamListTypes) { if (!firstCol) { t << endl << ".PP" << endl; |