qdoc: Fix closing 'table class="generic"' tag
authorSergio Ahumada <sergio.ahumada@nokia.com>
Mon, 12 Mar 2012 11:06:39 +0000 (12:06 +0100)
committerQt by Nokia <qt-info@nokia.com>
Mon, 12 Mar 2012 12:14:05 +0000 (13:14 +0100)
Change-Id: I251ed6d4e5788b0816211e06f33ace03d2fa14e8
Reviewed-by: Martin Smith <martin.smith@nokia.com>
src/tools/qdoc/htmlgenerator.cpp

index dd3a0fc..9b88656 100644 (file)
@@ -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;