diff options
author | Michi Henning <michi@zeroc.com> | 2007-01-21 23:06:32 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-01-21 23:06:32 +0000 |
commit | 039f9341229ec952a53ff2ef555c7b0436157e32 (patch) | |
tree | f9fc26fc573a66d7e7e196ee900c3c134a8b5fe7 /cpp/src/slice2html/Gen.cpp | |
parent | cosmetic fix (diff) | |
download | ice-039f9341229ec952a53ff2ef555c7b0436157e32.tar.bz2 ice-039f9341229ec952a53ff2ef555c7b0436157e32.tar.xz ice-039f9341229ec952a53ff2ef555c7b0436157e32.zip |
*** empty log message ***
Diffstat (limited to 'cpp/src/slice2html/Gen.cpp')
-rw-r--r-- | cpp/src/slice2html/Gen.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp index 361e7f82315..7d9ca8482cd 100644 --- a/cpp/src/slice2html/Gen.cpp +++ b/cpp/src/slice2html/Gen.cpp @@ -1751,7 +1751,7 @@ TOCGenerator::writeEntry(const ContainedPtr& c) cl.sort(); cl.unique(); - _out << toString(c, 0, false, true, 0, true); + _out << nl << toString(c, 0, false, true, 0, true); start("ul"); for(ContainedList::const_iterator i = cl.begin(); i != cl.end(); ++i) { @@ -1761,7 +1761,7 @@ TOCGenerator::writeEntry(const ContainedPtr& c) } else { - _out << toString(c, 0, false, true, 0, true); + _out << nl << toString(c, 0, false, true, 0, true); } if(ModulePtr::dynamicCast(c) || ExceptionPtr::dynamicCast(c) || ClassDefPtr::dynamicCast(c) || StructPtr::dynamicCast(c) || EnumPtr::dynamicCast(c)) @@ -1772,7 +1772,6 @@ TOCGenerator::writeEntry(const ContainedPtr& c) { _symbols.push_back(ClassDeclPtr::dynamicCast(c)->definition()); } - end(); } |