Changeset 190068 in webkit


Ignore:
Timestamp:
Sep 21, 2015 12:15:55 PM (9 years ago)
Author:
Csaba Osztrogonác
Message:

Fix the !ENABLE(TEMPLATE_ELEMENT) build after r189945
https://bugs.webkit.org/show_bug.cgi?id=149400

Reviewed by Darin Adler.

  • xml/parser/XMLDocumentParserLibxml2.cpp:

(WebCore::XMLDocumentParser::startElementNs):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r190067 r190068  
     12015-09-21  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Fix the !ENABLE(TEMPLATE_ELEMENT) build after r189945
     4        https://bugs.webkit.org/show_bug.cgi?id=149400
     5
     6        Reviewed by Darin Adler.
     7
     8        * xml/parser/XMLDocumentParserLibxml2.cpp:
     9        (WebCore::XMLDocumentParser::startElementNs):
     10
    1112015-09-21  Chris Dumez  <cdumez@apple.com>
    212
  • trunk/Source/WebCore/xml/parser/XMLDocumentParserLibxml2.cpp

    r189945 r190068  
    854854        pushCurrentNode(newElement.ptr());
    855855#else
    856     pushCurrentNode(newElement.get());
     856    pushCurrentNode(newElement.ptr());
    857857#endif
    858858
Note: See TracChangeset for help on using the changeset viewer.