summaryrefslogtreecommitdiffstats
path: root/src/htmldocvisitor.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-03-04 14:43:05 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-03-04 14:43:05 (GMT)
commit6c731ddf5f77247ef07f9772a9d80d7eedba9d19 (patch)
tree17b90faecde21eed87e223de2b7dd3a80a304604 /src/htmldocvisitor.cpp
parent169a67186780c191749b958de0f71a17fa090248 (diff)
downloadDoxygen-6c731ddf5f77247ef07f9772a9d80d7eedba9d19.zip
Doxygen-6c731ddf5f77247ef07f9772a9d80d7eedba9d19.tar.gz
Doxygen-6c731ddf5f77247ef07f9772a9d80d7eedba9d19.tar.bz2
secref command output shows in 1 column (HTML)
The output from the `\secref` command shows in 1 column instead of 3. The `column-count` (also possibile without `-moz` or `-webkit`) should be with the `<ul>` tag instead of the `<div>` tag
Diffstat (limited to 'src/htmldocvisitor.cpp')
-rw-r--r--src/htmldocvisitor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp
index c0c22b8..d5fac8f 100644
--- a/src/htmldocvisitor.cpp
+++ b/src/htmldocvisitor.cpp
@@ -1873,8 +1873,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)