[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
mitz at apple.com
mitz at apple.com
Wed Mar 17 18:12:27 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 8c22a0017b03b94e3765b0aa775bed27fe717907
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