Bug 36022 - Warning fix in EventHandler
Summary: Warning fix in EventHandler
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-03-11 10:53 PST by Garret Kelly
Modified: 2010-03-11 11:33 PST (History)
1 user (show)

See Also:


Attachments
Fix warning in EventHandler (1.68 KB, patch)
2010-03-11 11:15 PST, Garret Kelly
darin: review-
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
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