Changeset 7030
- Timestamp:
- Nov 4, 2008, 12:34:13 AM (12 years ago)
- Location:
- trunk/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/GroupsWindowController.m
r6009 r7030 83 83 { 84 84 GroupsController * groupsController = [GroupsController groups]; 85 intgroupsIndex = [groupsController indexForRow: row];85 NSInteger groupsIndex = [groupsController indexForRow: row]; 86 86 87 87 NSString * identifier = [tableColumn identifier]; … … 127 127 128 128 - (NSDragOperation) tableView: (NSTableView *) tableView validateDrop: (id <NSDraggingInfo>) info 129 proposedRow: ( int) row proposedDropOperation: (NSTableViewDropOperation) operation129 proposedRow: (NSInteger) row proposedDropOperation: (NSTableViewDropOperation) operation 130 130 { 131 131 NSPasteboard * pasteboard = [info draggingPasteboard]; … … 139 139 } 140 140 141 - (BOOL) tableView: (NSTableView *) tableView acceptDrop: (id <NSDraggingInfo>) info row: ( int) newRow141 - (BOOL) tableView: (NSTableView *) tableView acceptDrop: (id <NSDraggingInfo>) info row: (NSInteger) newRow 142 142 dropOperation: (NSTableViewDropOperation) operation 143 143 { -
trunk/macosx/TorrentTableView.m
r6980 r7030 524 524 - (void) keyDown: (NSEvent *) event 525 525 { 526 unichar firstChar = [[event charactersIgnoringModifiers] characterAtIndex: 0];526 const unichar firstChar = [[event charactersIgnoringModifiers] characterAtIndex: 0]; 527 527 528 528 if (firstChar == 'f' && [event modifierFlags] & NSAlternateKeyMask && [event modifierFlags] & NSCommandKeyMask)
Note: See TracChangeset
for help on using the changeset viewer.