Title: [140671] trunk/Source/WebCore
Revision
140671
Author
[email protected]
Date
2013-01-24 03:25:52 -0800 (Thu, 24 Jan 2013)

Log Message

Fix Qt build (KO since r140610), typo error for QString::fromUtf16 function.
https://bugs.webkit.org/show_bug.cgi?id=107803

Patch by Julien BRIANCEAU <[email protected]> on 2013-01-24
Reviewed by Andreas Kling.

* xml/parser/XMLDocumentParserQt.cpp:
(WebCore::decodeNamedEntity):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (140670 => 140671)


--- trunk/Source/WebCore/ChangeLog	2013-01-24 10:45:28 UTC (rev 140670)
+++ trunk/Source/WebCore/ChangeLog	2013-01-24 11:25:52 UTC (rev 140671)
@@ -1,3 +1,13 @@
+2013-01-24  Julien BRIANCEAU   <[email protected]>
+
+        Fix Qt build (KO since r140610), typo error for QString::fromUtf16 function.
+        https://bugs.webkit.org/show_bug.cgi?id=107803
+
+        Reviewed by Andreas Kling.
+
+        * xml/parser/XMLDocumentParserQt.cpp:
+        (WebCore::decodeNamedEntity):
+
 2013-01-24  Pavel Feldman  <[email protected]>
 
         Web Inspector: breakpoints are not restored upon reload for scripts with script mapping.

Modified: trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp (140670 => 140671)


--- trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp	2013-01-24 10:45:28 UTC (rev 140670)
+++ trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp	2013-01-24 11:25:52 UTC (rev 140671)
@@ -71,7 +71,7 @@
 {
     UChar utf16DecodedEntity[4];
     size_t numberOfCodePoints = decodeNamedEntityToUCharArray(entityName.toUtf8().constData(), utf16DecodedEntity);
-    return QString::fromUTF16(utf16DecodedEntity, numberOfCodePoints);
+    return QString::fromUtf16(utf16DecodedEntity, numberOfCodePoints);
 }
 
 QString EntityResolver::resolveUndeclaredEntity(const QString &name)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to