Title: [145756] trunk/Source/WebCore
Revision
145756
Author
[email protected]
Date
2013-03-13 14:43:13 -0700 (Wed, 13 Mar 2013)

Log Message

[Qt] Prospective trivial build fix after r145744

Add missing closing parentheses.

* xml/parser/XMLDocumentParserQt.cpp:
(WebCore::XMLDocumentParser::parseDtd):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (145755 => 145756)


--- trunk/Source/WebCore/ChangeLog	2013-03-13 21:41:10 UTC (rev 145755)
+++ trunk/Source/WebCore/ChangeLog	2013-03-13 21:43:13 UTC (rev 145756)
@@ -1,3 +1,12 @@
+2013-03-13  Simon Hausmann  <[email protected]>
+
+        [Qt] Prospective trivial build fix after r145744
+
+        Add missing closing parentheses.
+
+        * xml/parser/XMLDocumentParserQt.cpp:
+        (WebCore::XMLDocumentParser::parseDtd):
+
 2013-03-13  Brady Eidson  <[email protected]>
 
         Account for review feedback in https://bugs.webkit.org/show_bug.cgi?id=112279

Modified: trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp (145755 => 145756)


--- trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp	2013-03-13 21:41:10 UTC (rev 145755)
+++ trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp	2013-03-13 21:43:13 UTC (rev 145756)
@@ -640,8 +640,8 @@
         || (publicId == QLatin1String("-//W3C//DTD XHTML Basic 1.0//EN"))
         || (publicId == QLatin1String("-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN"))
         || (publicId == QLatin1String("-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"))
-        || (publicId == QLatin1String("-//WAPFORUM//DTD XHTML Mobile 1.0//EN")
-        || (publicId == QLatin1String("-//WAPFORUM//DTD XHTML Mobile 1.1//EN")
+        || (publicId == QLatin1String("-//WAPFORUM//DTD XHTML Mobile 1.0//EN"))
+        || (publicId == QLatin1String("-//WAPFORUM//DTD XHTML Mobile 1.1//EN"))
         || (publicId == QLatin1String("-//WAPFORUM//DTD XHTML Mobile 1.2//EN"))
        )
         setIsXHTMLDocument(true); // controls if we replace entities or not.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to