mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 03:00:47 +00:00
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:
parent
4850a9feac
commit
40fb48e5de
18 changed files with 329 additions and 329 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue