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

bweinstein at apple.com bweinstein at apple.com
Wed Apr 7 23:18:00 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 5a116d3e6e700542f55c9d9647cbee1b7e158b63
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