Changeset 65087 in webkit


Ignore:
Timestamp:
Aug 10, 2010 1:29:58 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-10 Patrick Gansterer <paroga@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):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r65086 r65087  
     12010-08-10  Patrick Gansterer  <paroga@paroga.com>
     2
     3        Reviewed by Sam Weinig.
     4
     5        [WINCE] Implement Path::currentPoint()
     6        https://bugs.webkit.org/show_bug.cgi?id=42927
     7
     8        * platform/graphics/wince/PathWince.cpp:
     9        (WebCore::Path::currentPoint):
     10
    1112010-08-10  Ariya Hidayat  <ariya@sencha.com>
    212
  • trunk/WebCore/platform/graphics/wince/PathWince.cpp

    r63599 r65087  
    161161}
    162162
    163 FloatPoint Path::currentPoint() const 
     163FloatPoint Path::currentPoint() const
    164164{
    165     // FIXME: return current point of subpath.
    166     float quietNaN = std::numeric_limits<float>::quiet_NaN();
    167     return FloatPoint(quietNaN, quietNaN);
     165    return m_path->lastPoint();
    168166}
    169167
    170 }
     168} // namespace WebCore
Note: See TracChangeset for help on using the changeset viewer.