Next bit of NSInteger cleanup for -gui.

Fix all of the current warnings in Gorm so that it can be used to test
NSInteger things.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36039 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2013-01-30 12:43:27 +00:00
parent 4850a9feac
commit 40fb48e5de
18 changed files with 329 additions and 329 deletions

View file

@ -45,15 +45,15 @@
//
- (NSFormCell*)addEntry:(NSString*)title;
- (NSFormCell*)insertEntry:(NSString*)title
atIndex:(int)index;
- (void)removeEntryAtIndex:(int)index;
atIndex:(NSInteger)index;
- (void)removeEntryAtIndex:(NSInteger)index;
- (void)setInterlineSpacing:(float)spacing;
//
// Finding Indices
//
- (int)indexOfCellWithTag:(int)aTag;
- (int)indexOfSelectedItem;
- (NSInteger)indexOfCellWithTag:(NSInteger)aTag;
- (NSInteger)indexOfSelectedItem;
//
// Modifying Graphic Attributes
@ -72,17 +72,17 @@
//
// Getting a Cell
//
- (id)cellAtIndex:(int)index;
- (id)cellAtIndex:(NSInteger)index;
//
// Displaying a Cell
//
- (void)drawCellAtIndex:(int)index;
- (void)drawCellAtIndex:(NSInteger)index;
//
// Editing Text
//
- (void)selectTextAtIndex:(int)index;
- (void)selectTextAtIndex:(NSInteger)index;
//
// Resizing the Form