diff options
| author | nyamatongwe <devnull@localhost> | 2011-07-11 11:27:30 +1000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-07-11 11:27:30 +1000 |
| commit | f0e16d3e5cde10a8168deb434d11e7c6180cce2a (patch) | |
| tree | 12ae185099830fa638cf4e8a121cafc1bf18918b /cocoa | |
| parent | 2dee86b9c77ab2462e5a18c10c079d9c71c18ca1 (diff) | |
| download | scintilla-mirror-f0e16d3e5cde10a8168deb434d11e7c6180cce2a.tar.gz | |
Fix type warnings.
Diffstat (limited to 'cocoa')
| -rw-r--r-- | cocoa/ScintillaCocoa.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index 6348d3f78..5e93d7f94 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -1628,7 +1628,7 @@ bool ScintillaCocoa::KeyboardInput(NSEvent* event) bool handled = false; // Handle each entry individually. Usually we only have one entry anway. - for (int i = 0; i < input.length; i++) + for (size_t i = 0; i < input.length; i++) { const UniChar originalKey = [input characterAtIndex: i]; UniChar key = KeyTranslate(originalKey); |
