diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2018-11-04 15:45:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-04 15:45:29 (GMT) |
commit | 4f7adc07d3ecf4e54167388df92c1f8fefe19572 (patch) | |
tree | 8d35f3fff9b19be6fa56cf535bb4d46d81ba9c52 | |
parent | 1b88f2417deadcd6c25a47bd6f37c524c61abefc (diff) | |
parent | 529244ed7be4c289c46c66f0d7aa248e80fbacdf (diff) | |
download | Doxygen-4f7adc07d3ecf4e54167388df92c1f8fefe19572.zip Doxygen-4f7adc07d3ecf4e54167388df92c1f8fefe19572.tar.gz Doxygen-4f7adc07d3ecf4e54167388df92c1f8fefe19572.tar.bz2 |
Merge pull request #6596 from albert-github/feature/bug_docbook_tgroup
Inconsistency in respect to tgroup in docbook
-rw-r--r-- | src/docbookvisitor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/docbookvisitor.cpp b/src/docbookvisitor.cpp index da84931..a5f0483 100644 --- a/src/docbookvisitor.cpp +++ b/src/docbookvisitor.cpp @@ -941,7 +941,8 @@ void DocbookDocVisitor::visitPost(DocHtmlTable *) { DB_VIS_C if (m_hide) return; - m_t << " </tbody>" << endl; + if (bodySet) m_t << " </tbody>" << endl; + bodySet = FALSE; m_t << " </tgroup>" << endl; m_t << "</informaltable>" << endl; } |