summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Theegarten <jan@moduleworks.com>2021-01-07 13:46:26 (GMT)
committerJan Theegarten <jan@moduleworks.com>2021-01-07 13:46:26 (GMT)
commit8e2d091818580e25a133257909c19cddc2f80054 (patch)
tree88c450282b9f20883befe15c568e9c2c168e72b6 /src
parentdb1d1fa78e53248ea96a26700b52c393f54c521f (diff)
downloadDoxygen-8e2d091818580e25a133257909c19cddc2f80054.zip
Doxygen-8e2d091818580e25a133257909c19cddc2f80054.tar.gz
Doxygen-8e2d091818580e25a133257909c19cddc2f80054.tar.bz2
Adapt formatting
Diffstat (limited to 'src')
-rw-r--r--src/xmldocvisitor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmldocvisitor.cpp b/src/xmldocvisitor.cpp
index 30a5f01..3ecd15b 100644
--- a/src/xmldocvisitor.cpp
+++ b/src/xmldocvisitor.cpp
@@ -783,7 +783,7 @@ void XmlDocVisitor::visitPre(DocHtmlTable *t)
HtmlAttrib* opt;
for (li.toFirst(); (opt = li.current()); ++li)
{
- if (opt->name == "width")
+ if (opt->name=="width")
{
m_t << " " << opt->name << "=\"" << opt->value << "\"";
}
@@ -826,11 +826,11 @@ void XmlDocVisitor::visitPre(DocHtmlCell *c)
{
m_t << " align=\"" << opt->value << "\"";
}
- else if (opt->name == "width")
+ else if (opt->name=="width")
{
m_t << " width=\"" << opt->value << "\"";
}
- else if (opt->name == "class") // handle markdown generated attributes
+ else if (opt->name=="class") // handle markdown generated attributes
{
if (opt->value.left(13)=="markdownTable") // handle markdown generated attributes
{