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

paroga at webkit.org paroga at webkit.org
Wed Dec 22 13:32:35 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d4693aeebafcd7cb46505220b4f004d07e232279
Author: paroga at webkit.org <paroga at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Sep 19 19:54:56 2010 +0000

    2010-09-19  Patrick Gansterer  <paroga at paroga.com>
    
            Unreviewed.
    
            [WINCE] Buildfix for Gradient after r67801.
    
            * platform/graphics/Gradient.h:
            * platform/graphics/wince/GradientWinCE.cpp:
            (WebCore::Gradient::getStops):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67816 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 75f52bf..ccd7bcb 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-09-19  Patrick Gansterer  <paroga at paroga.com>
+
+        Unreviewed.
+
+        [WINCE] Buildfix for Gradient after r67801.
+
+        * platform/graphics/Gradient.h:
+        * platform/graphics/wince/GradientWinCE.cpp:
+        (WebCore::Gradient::getStops):
+
 2010-09-19  Kent Tamura  <tkent at chromium.org>
 
         Reviewed by Dimitri Glazkov.
diff --git a/WebCore/platform/graphics/Gradient.h b/WebCore/platform/graphics/Gradient.h
index 5f9416a..6fad810 100644
--- a/WebCore/platform/graphics/Gradient.h
+++ b/WebCore/platform/graphics/Gradient.h
@@ -96,7 +96,7 @@ namespace WebCore {
         const FloatPoint& p1() const { return m_p1; }
         float r0() const { return m_r0; }
         float r1() const { return m_r1; }
-        const Vector<ColorStop>& getStops() const;
+        const Vector<ColorStop, 2>& getStops() const;
 #else
         PlatformGradient platformGradient();
 #endif
diff --git a/WebCore/platform/graphics/wince/GradientWinCE.cpp b/WebCore/platform/graphics/wince/GradientWinCE.cpp
index 73a1fdb..d735881 100644
--- a/WebCore/platform/graphics/wince/GradientWinCE.cpp
+++ b/WebCore/platform/graphics/wince/GradientWinCE.cpp
@@ -34,7 +34,7 @@ static inline bool compareStops(const Gradient::ColorStop& a, const Gradient::Co
     return a.stop < b.stop;
 }
 
-const Vector<Gradient::ColorStop>& Gradient::getStops() const
+const Vector<Gradient::ColorStop, 2>& Gradient::getStops() const
 {
     if (!m_stopsSorted) {
         if (m_stops.size())

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list