mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 21:00:44 +00:00
missed int -> NSInteger transition
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@36243 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
262e620575
commit
b58bebdc1b
2 changed files with 6 additions and 1 deletions
|
@ -47,6 +47,8 @@
|
|||
* EOAccess/EORelationship.m
|
||||
* EOControl/EONSAddOns.m
|
||||
get rid of some warnings about tautological compares
|
||||
* GDL2Palette/DisplayGroupInspector.m
|
||||
missed int -> NSInteger transition before
|
||||
|
||||
2013-03-01: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
* EOControl/EODebug.m
|
||||
|
|
|
@ -104,7 +104,10 @@ objectValueForTableColumn:(NSTableColumn *)tc
|
|||
return [_localKeys objectAtIndex:row];
|
||||
}
|
||||
|
||||
- (void) tableView:(NSTableView *)tv setObjectValue:(id)newValue forTableColumn:(NSTableColumn *)tc row:(int) row;
|
||||
- (void) tableView:(NSTableView *)tv
|
||||
setObjectValue:(id)newValue
|
||||
forTableColumn:(NSTableColumn *)tc
|
||||
row:(NSInteger) row;
|
||||
{
|
||||
[_localKeys replaceObjectAtIndex:row withObject:newValue];
|
||||
[object setLocalKeys:_localKeys];
|
||||
|
|
Loading…
Reference in a new issue