Changeset 69034 in webkit


Ignore:
Timestamp:
Oct 4, 2010 2:06:33 PM (14 years ago)
Author:
steveblock@google.com
Message:

2010-10-04 Huahui Wu <mediadependent@gmail.com>

Reviewed by Darin Adler.

Fix a compiler error for ANDROID introduced by bug 45221.
https://bugs.webkit.org/show_bug.cgi?id=47095

It's a small fix for a compiler error, so there is no new test.

  • platform/android/PlatformTouchEventAndroid.cpp: (WebCore::PlatformTouchEvent::PlatformTouchEvent):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r69033 r69034  
     12010-10-04  Huahui Wu  <mediadependent@gmail.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Fix a compiler error for ANDROID introduced by bug 45221.
     6        https://bugs.webkit.org/show_bug.cgi?id=47095
     7
     8        It's a small fix for a compiler error, so there is no new test.
     9
     10        * platform/android/PlatformTouchEventAndroid.cpp:
     11        (WebCore::PlatformTouchEvent::PlatformTouchEvent):
     12
    1132010-10-04  Chris Fleizach  <cfleizach@apple.com>
    214
  • trunk/WebCore/platform/android/PlatformTouchEventAndroid.cpp

    r68499 r69034  
    4444    m_touchPoints.reserveCapacity(windowPoints.size());
    4545    for (unsigned c = 0; c < windowPoints.size(); c++)
    46         m_touchPoints.append(PlatformTouchPoint(windowPos, state));
     46        m_touchPoints.append(PlatformTouchPoint(c, windowPoints[c], state));
    4747
    4848    m_altKey = metaState & META_ALT_ON;
Note: See TracChangeset for help on using the changeset viewer.