mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 12:28:52 +00:00
move a lot of loop counters into the loops' scopes; trivial changes
This commit is contained in:
@@ -289,8 +289,7 @@
|
||||
{
|
||||
NSMenu * menu = [fGroupPopUp menu];
|
||||
|
||||
int i;
|
||||
for (i = [menu numberOfItems]-1 - 2; i >= 0; i--)
|
||||
for (NSInteger i = [menu numberOfItems]-1 - 2; i >= 0; i--)
|
||||
[menu removeItemAtIndex: i];
|
||||
|
||||
NSMenu * groupMenu = [[GroupsController groups] groupMenuWithTarget: self action: @selector(changeGroupValue:) isSmall: NO];
|
||||
|
||||
Reference in New Issue
Block a user