Changeset 140671 in webkit


Ignore:
Timestamp:
Jan 24, 2013 3:25:52 AM (11 years ago)
Author:
commit-queue@webkit.org
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 <jbrianceau@nds.com> on 2013-01-24
Reviewed by Andreas Kling.

  • xml/parser/XMLDocumentParserQt.cpp:

(WebCore::decodeNamedEntity):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r140666 r140671  
     12013-01-24  Julien BRIANCEAU   <jbrianceau@nds.com>
     2
     3        Fix Qt build (KO since r140610), typo error for QString::fromUtf16 function.
     4        https://bugs.webkit.org/show_bug.cgi?id=107803
     5
     6        Reviewed by Andreas Kling.
     7
     8        * xml/parser/XMLDocumentParserQt.cpp:
     9        (WebCore::decodeNamedEntity):
     10
    1112013-01-24  Pavel Feldman  <pfeldman@chromium.org>
    212
  • trunk/Source/WebCore/xml/parser/XMLDocumentParserQt.cpp

    r140610 r140671  
    7272    UChar utf16DecodedEntity[4];
    7373    size_t numberOfCodePoints = decodeNamedEntityToUCharArray(entityName.toUtf8().constData(), utf16DecodedEntity);
    74     return QString::fromUTF16(utf16DecodedEntity, numberOfCodePoints);
     74    return QString::fromUtf16(utf16DecodedEntity, numberOfCodePoints);
    7575}
    7676
Note: See TracChangeset for help on using the changeset viewer.