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

rniwa at webkit.org rniwa at webkit.org
Wed Dec 22 18:04:40 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 75c2e9110a3ba1102e14eb77379fe8bc560cfe57
Author: rniwa at webkit.org <rniwa at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Dec 6 21:52:03 2010 +0000

    2010-12-06  Ryosuke Niwa  <rniwa at webkit.org>
    
            Unreviewed Leopard buildfix for r73380.
    
            * platform/graphics/ca/mac/PlatformCAAnimationMac.mm:
            (PlatformCAAnimation::setTimingFunctions):
            * platform/graphics/ca/mac/PlatformCALayerMac.mm:
            (PlatformCALayer::PlatformCALayer):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73397 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index b8c9224..fbba963 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-12-06  Ryosuke Niwa  <rniwa at webkit.org>
+
+        Unreviewed Leopard buildfix for r73380.
+
+        * platform/graphics/ca/mac/PlatformCAAnimationMac.mm:
+        (PlatformCAAnimation::setTimingFunctions):
+        * platform/graphics/ca/mac/PlatformCALayerMac.mm:
+        (PlatformCALayer::PlatformCALayer):
+
 2010-12-06  Philippe Normand  <pnormand at igalia.com>
 
         Reviewed by Martin Robinson.
diff --git a/WebCore/platform/graphics/ca/mac/PlatformCAAnimationMac.mm b/WebCore/platform/graphics/ca/mac/PlatformCAAnimationMac.mm
index d3384f9..163a8f3 100644
--- a/WebCore/platform/graphics/ca/mac/PlatformCAAnimationMac.mm
+++ b/WebCore/platform/graphics/ca/mac/PlatformCAAnimationMac.mm
@@ -578,7 +578,7 @@ void PlatformCAAnimation::setTimingFunctions(const Vector<const TimingFunction*>
 {
     NSMutableArray* array = [NSMutableArray array];
 
-    for (size_t i; i < value.size(); ++i)
+    for (size_t i = 0; i < value.size(); ++i)
         [array addObject:toCAMediaTimingFunction(value[i])];
     
     [static_cast<CAKeyframeAnimation*>(m_animation.get()) setTimingFunctions:array];
diff --git a/WebCore/platform/graphics/ca/mac/PlatformCALayerMac.mm b/WebCore/platform/graphics/ca/mac/PlatformCALayerMac.mm
index 3c9a695..ed8417e 100644
--- a/WebCore/platform/graphics/ca/mac/PlatformCALayerMac.mm
+++ b/WebCore/platform/graphics/ca/mac/PlatformCALayerMac.mm
@@ -181,7 +181,7 @@ PlatformCALayer::PlatformCALayer(LayerType layerType, PlatformLayer* layer, Grap
     } else {
         m_layerType = layerType;
     
-        Class layerClass;
+        Class layerClass = Nil;
         switch(layerType) {
             case LayerTypeLayer:
                 layerClass = [CALayer class];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list