mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-16 00:11:29 +00:00
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:
parent
314a9945b2
commit
41047a6341
2 changed files with 10 additions and 5 deletions
|
@ -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>
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue