StepTalk scripts panel: int->NSInteger transition

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@36661 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Wolfgang Lux 2013-05-26 16:03:29 +00:00
parent 314a9945b2
commit 41047a6341
2 changed files with 10 additions and 5 deletions

View file

@ -1,6 +1,11 @@
2013-05-26 Wolfgang Lux <wolfgang.lux@gmail.com>>
* Source/STScriptsPanel.m:
int->NSInteger transition
2013-04-03 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/STApplicationScriptingController.m (scriptingMenu): Hide the
* Source/STApplicationScriptingController.m (-scriptingMenu): Hide the
scripting menu after it has been loaded from its bundle.
2013-03-23 Wolfgang Lux <wolfgang.lux@gmail.com>

View file

@ -188,15 +188,15 @@ STScriptsPanel *sharedScriptsPanel = nil;
}
}
- (int) browser: (NSBrowser *) sender
numberOfRowsInColumn: (int) column
- (NSInteger) browser: (NSBrowser *) sender
numberOfRowsInColumn: (NSInteger) column
{
return [scripts count];
}
- (void) browser: (NSBrowser *) sender
willDisplayCell: (NSBrowserCell *) cell
atRow: (int) row
column: (int) column
atRow: (NSInteger) row
column: (NSInteger) column
{
NSString *name;
if(sender != scriptList)