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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 11:53:26 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a876df2123d539ba19ed05c8c8026ae47addb1a3
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 10 20:29:58 2010 +0000

    2010-08-10  Patrick Gansterer  <paroga at paroga.com>
    
            Reviewed by Sam Weinig.
    
            [WINCE] Implement Path::currentPoint()
            https://bugs.webkit.org/show_bug.cgi?id=42927
    
            * platform/graphics/wince/PathWince.cpp:
            (WebCore::Path::currentPoint):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65087 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 80602e6..fd31224 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-10  Patrick Gansterer  <paroga at paroga.com>
+
+        Reviewed by Sam Weinig.
+
+        [WINCE] Implement Path::currentPoint()
+        https://bugs.webkit.org/show_bug.cgi?id=42927
+
+        * platform/graphics/wince/PathWince.cpp:
+        (WebCore::Path::currentPoint):
+
 2010-08-10  Ariya Hidayat  <ariya at sencha.com>
 
         [Qt] Warning fix, remove reference to platform/text/StringImpl.h
diff --git a/WebCore/platform/graphics/wince/PathWince.cpp b/WebCore/platform/graphics/wince/PathWince.cpp
index 747e650..6aa2864 100644
--- a/WebCore/platform/graphics/wince/PathWince.cpp
+++ b/WebCore/platform/graphics/wince/PathWince.cpp
@@ -160,11 +160,9 @@ bool Path::hasCurrentPoint() const
     return !isEmpty();
 }
 
-FloatPoint Path::currentPoint() const 
+FloatPoint Path::currentPoint() const
 {
-    // FIXME: return current point of subpath.
-    float quietNaN = std::numeric_limits<float>::quiet_NaN();
-    return FloatPoint(quietNaN, quietNaN);
+    return m_path->lastPoint();
 }
 
-}
+} // namespace WebCore

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list