[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

mitz at apple.com mitz at apple.com
Thu Apr 8 02:08:05 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 829eca9c89865efe4cde12524767780d8e4ce3fd
Author: mitz at apple.com <mitz at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Mar 3 17:42:50 2010 +0000

    Build fix.
    
    * dom/ContainerNode.cpp:
    (WebCore::ContainerNode::removeChildren):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55465 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 14d518d..71989cc 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,10 @@
+2010-03-03  Dan Bernstein  <mitz at apple.com>
+
+        Build fix.
+
+        * dom/ContainerNode.cpp:
+        (WebCore::ContainerNode::removeChildren):
+
 2010-03-03  Pavel Feldman  <pfeldman at chromium.org>
 
         Reviewed by Timothy Hatcher.
diff --git a/WebCore/dom/ContainerNode.cpp b/WebCore/dom/ContainerNode.cpp
index 8ab78ac..b86d9b8 100644
--- a/WebCore/dom/ContainerNode.cpp
+++ b/WebCore/dom/ContainerNode.cpp
@@ -421,7 +421,7 @@ bool ContainerNode::removeChildren()
     size_t removedChildrenCount = removedChildren.size();
 
     // Dispatch a single post-removal mutation event denoting a modified subtree.
-    childrenChanged(false, 0, 0, -removedChildrenCount);
+    childrenChanged(false, 0, 0, -static_cast<int>(removedChildrenCount));
     dispatchSubtreeModifiedEvent();
 
     for (size_t i = 0; i < removedChildrenCount; ++i) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list