summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@nokia.com>2012-03-12 12:06:39 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-12 13:14:05 +0100
commit0a14ddfacb4b6089bdf561b4456e3578da329428 (patch)
tree993c5d114aafa74a81223a9657f479d3ab0cae36 /src
parenta5c1ffedb8aceaa69bb27f999cf3ead205a86a54 (diff)
qdoc: Fix closing 'table class="generic"' tag
Change-Id: I251ed6d4e5788b0816211e06f33ace03d2fa14e8 Reviewed-by: Martin Smith <martin.smith@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/tools/qdoc/htmlgenerator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/qdoc/htmlgenerator.cpp b/src/tools/qdoc/htmlgenerator.cpp
index dd3a0fcbfc..9b886564c4 100644
--- a/src/tools/qdoc/htmlgenerator.cpp
+++ b/src/tools/qdoc/htmlgenerator.cpp
@@ -1055,8 +1055,8 @@ int HtmlGenerator::generateAtom(const Atom *atom,
}
out() << "<table class=\"" << attr << "\"";
if (!width.isEmpty())
- out() << " width=\"" << width << "\">";
- out() << "\n ";
+ out() << " width=\"" << width << "\"";
+ out() << ">\n ";
numTableRows = 0;
}
break;