[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.16-1409-g5afdf4d
bweinstein at apple.com
bweinstein at apple.com
Thu Dec 3 13:24:31 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit 036d5753a054052a944e59070ecd78d20b0e137a
Author: bweinstein at apple.com <bweinstein at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Nov 2 05:57:39 2009 +0000
Change ssize_t to unsigned to try and fix Windows build.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50403 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/dom/Node.cpp b/WebCore/dom/Node.cpp
index 8b5494f..0b53241 100644
--- a/WebCore/dom/Node.cpp
+++ b/WebCore/dom/Node.cpp
@@ -2451,7 +2451,7 @@ static bool eventHasListeners(const AtomicString& eventType, Node* node, Vector<
if (node->hasEventListeners(eventType))
return true;
- for (ssize_t i = (ancestors.size() - 1); i >= 0; --i) {
+ for (unsigned i = (ancestors.size() - 1); i >= 0; --i) {
ContainerNode* ancestor = ancestors[i].get();
if (ancestor->hasEventListeners(eventType))
return true;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list