[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

abarth at webkit.org abarth at webkit.org
Wed Dec 22 12:32:50 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 878eef2edbf951d3e21ba3ff7a5de934c31b5aee
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 25 06:53:30 2010 +0000

    2010-08-24  Adam Barth  <abarth at webkit.org>
    
            Qt build fix.
    
            * dom/XMLDocumentParserQt.cpp:
            (WebCore::XMLDocumentParser::parseStartElement):
            (WebCore::XMLDocumentParser::parseProcessingInstruction):
            (WebCore::XMLDocumentParser::parseCdata):
            (WebCore::XMLDocumentParser::parseComment):
            (WebCore::XMLDocumentParser::parseDtd):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65989 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index a0db5ec..0bbc5ea 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,16 @@
 2010-08-24  Adam Barth  <abarth at webkit.org>
 
+        Qt build fix.
+
+        * dom/XMLDocumentParserQt.cpp:
+        (WebCore::XMLDocumentParser::parseStartElement):
+        (WebCore::XMLDocumentParser::parseProcessingInstruction):
+        (WebCore::XMLDocumentParser::parseCdata):
+        (WebCore::XMLDocumentParser::parseComment):
+        (WebCore::XMLDocumentParser::parseDtd):
+
+2010-08-24  Adam Barth  <abarth at webkit.org>
+
         Reviewed by Eric Seidel.
 
         Delete HTMLElement::checkDTD
diff --git a/WebCore/dom/XMLDocumentParserQt.cpp b/WebCore/dom/XMLDocumentParserQt.cpp
index 31775b5..efae766 100644
--- a/WebCore/dom/XMLDocumentParserQt.cpp
+++ b/WebCore/dom/XMLDocumentParserQt.cpp
@@ -518,7 +518,7 @@ void XMLDocumentParser::parseStartElement()
     if (scriptElement)
         m_scriptStartLine = lineNumber();
 
-    m_currentNode->parserAddChild(newElement.get());
+    m_currentNode->deprecatedParserAddChild(newElement.get());
 
     pushCurrentNode(newElement.get());
     if (m_view && !newElement->attached())
@@ -616,7 +616,7 @@ void XMLDocumentParser::parseProcessingInstruction()
 
     pi->setCreatedByParser(true);
 
-    m_currentNode->parserAddChild(pi.get());
+    m_currentNode->deprecatedParserAddChild(pi.get());
     if (m_view && !pi->attached())
         pi->attach();
 
@@ -635,7 +635,7 @@ void XMLDocumentParser::parseCdata()
 
     RefPtr<Node> newNode = CDATASection::create(document(), m_stream.text());
 
-    m_currentNode->parserAddChild(newNode.get());
+    m_currentNode->deprecatedParserAddChild(newNode.get());
     if (m_view && !newNode->attached())
         newNode->attach();
 }
@@ -646,7 +646,7 @@ void XMLDocumentParser::parseComment()
 
     RefPtr<Node> newNode = Comment::create(document(), m_stream.text());
 
-    m_currentNode->parserAddChild(newNode.get());
+    m_currentNode->deprecatedParserAddChild(newNode.get());
     if (m_view && !newNode->attached())
         newNode->attach();
 }
@@ -705,7 +705,7 @@ void XMLDocumentParser::parseDtd()
         handleError(fatal, "Invalid DTD Public ID", lineNumber(), columnNumber());
 #endif
     if (!m_parsingFragment)
-        document()->parserAddChild(DocumentType::create(document(), name, publicId, systemId));
+        document()->deprecatedParserAddChild(DocumentType::create(document(), name, publicId, systemId));
 
 }
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list