Changeset 102523 in webkit


Ignore:
Timestamp:
Dec 10, 2011 10:46:31 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Microdata: Fix compilation error in MICRODATA enabled build.
https://bugs.webkit.org/show_bug.cgi?id=74235

Patch by Arko Saha <arko@motorola.com> on 2011-12-10
Reviewed by Andreas Kling.

  • dom/Document.cpp:

(WebCore::Document::getItems):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r102521 r102523  
     12011-12-10   Arko Saha  <arko@motorola.com>
     2
     3        Microdata: Fix compilation error in MICRODATA enabled build.
     4        https://bugs.webkit.org/show_bug.cgi?id=74235
     5
     6        Reviewed by Andreas Kling.
     7
     8        * dom/Document.cpp:
     9        (WebCore::Document::getItems):
     10
    1112011-12-10  Jarred Nicholls  <jarred@sencha.com>
    212
  • trunk/Source/WebCore/dom/Document.cpp

    r102431 r102523  
    52115211PassRefPtr<NodeList> Document::getItems(const String& typeNames)
    52125212{
    5213     NodeListsNodeData* nodeLists = ensureRareData()->ensureNodeLists();
     5213    NodeListsNodeData* nodeLists = ensureRareData()->ensureNodeLists(this);
    52145214
    52155215    // Since documet.getItem() is allowed for microdata, typeNames will be null string.
Note: See TracChangeset for help on using the changeset viewer.