diff -r cd0e9694f2ef -r 999a74da228b webengine/webkitutils/rt_gesturehelper/src/gesturerecogniser.cpp --- a/webengine/webkitutils/rt_gesturehelper/src/gesturerecogniser.cpp Wed Jun 16 13:48:17 2010 +0100 +++ b/webengine/webkitutils/rt_gesturehelper/src/gesturerecogniser.cpp Wed Jun 16 14:59:03 2010 +0100 @@ -182,7 +182,7 @@ /** @return last direction of dragging */ inline TGestureCode LastDirection( const TPointArray& aPoints ) { - TInt latestPointIndex = LatestCertainPointIndex( aPoints, TPointArray::operator[] ); + TInt latestPointIndex = LatestCertainPointIndex( aPoints, &TPointArray::operator[] ); if ( KErrNotFound != latestPointIndex ) { return Direction( aPoints[latestPointIndex], LastPoint( aPoints ) ); @@ -196,7 +196,7 @@ */ inline TBool IsTap( const TPointArray& aPoints ) { - return KErrNotFound == LatestCertainPointIndex( aPoints, TPointArray::Raw ); + return KErrNotFound == LatestCertainPointIndex( aPoints, &TPointArray::Raw ); } // ----------------------------------------------------------------------------