Bug 36022

Summary: Warning fix in EventHandler
Product: WebKit Reporter: Garret Kelly <gdk>
Component: New BugsAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: fishd
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
Fix warning in EventHandler darin: review-

Description Garret Kelly 2010-03-11 10:53:51 PST
Fix an unsigned integer comparison warning.
Comment 1 Garret Kelly 2010-03-11 11:15:25 PST
Created attachment 50517 [details]
Fix warning in EventHandler
Comment 2 Garret Kelly 2010-03-11 11:25:35 PST
Already fixed. Oops.
Comment 3 Darin Adler 2010-03-11 11:33:45 PST
Comment on attachment 50517 [details]
Fix warning in EventHandler

We use "unsigned", not "unsigned int".

Vector sizes and indexes are actually size_t, not unsigned, so the points.size() one should just be size_t.

review- so you can fix those