diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2018-12-08 15:43:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-08 15:43:19 (GMT) |
commit | 4527ee311a0f6c034da32a800bbce53ac2163b0b (patch) | |
tree | a1825a8b1bbcf24dcccd8ec61ba3c9a674c92f03 /src | |
parent | 8d3e755a673fa84c7206decf6efb44397880d186 (diff) | |
parent | a4c2fd0e8f367531b78683ba920a853e23d101ec (diff) | |
download | Doxygen-4527ee311a0f6c034da32a800bbce53ac2163b0b.zip Doxygen-4527ee311a0f6c034da32a800bbce53ac2163b0b.tar.gz Doxygen-4527ee311a0f6c034da32a800bbce53ac2163b0b.tar.bz2 |
Merge pull request #6663 from albert-github/feature/bug_xhtml_class_table
XHTML problem with class index table
Diffstat (limited to 'src')
-rw-r--r-- | src/index.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/index.cpp b/src/index.cpp index 84b5e51..5439987 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -2284,11 +2284,12 @@ static void writeAlphabeticalClassList(OutputList &ol, ClassDef::CompoundType ct } ol.writeNonBreakableSpace(3); } - ++(*colIterators[j]); - if (cell->letter()!=0 || cell->classDef()!=(ClassDef*)0x8) - { - ol.writeString("</td>"); + else + { + ol.writeString("<td>"); } + ++(*colIterators[j]); + ol.writeString("</td>"); } } else |