more type conversions and remove pointless method call

This commit is contained in:
Mitchell Livingston
2008-11-09 12:33:09 +00:00
parent 00ab31b454
commit 19870b5794
3 changed files with 22 additions and 24 deletions

View File

@@ -31,23 +31,23 @@
+ (GroupsController *) groups;
- (int) numberOfGroups;
- (NSInteger) numberOfGroups;
- (int) rowValueForIndex: (int) index;
- (int) indexForRow: (int) row;
- (NSInteger) rowValueForIndex: (NSInteger) index;
- (NSInteger) indexForRow: (NSInteger) row;
- (NSString *) nameForIndex: (int) index;
- (void) setName: (NSString *) name forIndex: (int) index;
- (NSString *) nameForIndex: (NSInteger) index;
- (void) setName: (NSString *) name forIndex: (NSInteger) index;
- (NSImage *) imageForIndex: (int) index;
- (NSImage *) imageForIndex: (NSInteger) index;
- (NSColor *) colorForIndex: (int) index;
- (void) setColor: (NSColor *) color forIndex: (int) index;
- (NSColor *) colorForIndex: (NSInteger) index;
- (void) setColor: (NSColor *) color forIndex: (NSInteger) index;
- (void) addNewGroup;
- (void) removeGroupWithRowIndexes: (NSIndexSet *) rowIndexes;
- (NSIndexSet *) moveGroupsAtRowIndexes: (NSIndexSet *) indexes toRow: (int) newRow oldSelected: (NSIndexSet *) selectedIndexes;
- (NSIndexSet *) moveGroupsAtRowIndexes: (NSIndexSet *) indexes toRow: (NSInteger) newRow oldSelected: (NSIndexSet *) selectedIndexes;
- (NSMenu *) groupMenuWithTarget: (id) target action: (SEL) action isSmall: (BOOL) small;