diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-03-09 14:40:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-09 14:40:32 (GMT) |
commit | a0d28243a470d82af83fdf77ceb7cba122d6d716 (patch) | |
tree | 6c86e893761c40d2fbc1c796453e0ba1ec0c71a9 /src/htmldocvisitor.cpp | |
parent | 208c689e4c13cc065045a6f6b1ff685eda5a3cd6 (diff) | |
parent | 6c731ddf5f77247ef07f9772a9d80d7eedba9d19 (diff) | |
download | Doxygen-a0d28243a470d82af83fdf77ceb7cba122d6d716.zip Doxygen-a0d28243a470d82af83fdf77ceb7cba122d6d716.tar.gz Doxygen-a0d28243a470d82af83fdf77ceb7cba122d6d716.tar.bz2 |
Merge pull request #6868 from albert-github/feature/bug_secref_multicol
secreflist command output shows in 1 column (HTML)
Diffstat (limited to 'src/htmldocvisitor.cpp')
-rw-r--r-- | src/htmldocvisitor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp index f405591..9bd0b4f 100644 --- a/src/htmldocvisitor.cpp +++ b/src/htmldocvisitor.cpp @@ -1880,8 +1880,8 @@ void HtmlDocVisitor::visitPre(DocSecRefList *s) { if (m_hide) return; forceEndParagraph(s); - m_t << "<div class=\"multicol\">" << endl; - m_t << "<ul>" << endl; + m_t << "<div>" << endl; + m_t << "<ul class=\"multicol\">" << endl; } void HtmlDocVisitor::visitPost(DocSecRefList *s) |