mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Updates for 10.5 API changes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27962 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0b528e776c
commit
30cf8bf35b
138 changed files with 2094 additions and 1536 deletions
|
@ -53,7 +53,7 @@
|
|||
return newMs;
|
||||
}
|
||||
|
||||
- (NSArgumentInfo) argumentInfoAtIndex: (unsigned)index
|
||||
- (NSArgumentInfo) argumentInfoAtIndex: (NSUInteger)index
|
||||
{
|
||||
if (index >= _numArgs)
|
||||
{
|
||||
|
@ -67,12 +67,12 @@
|
|||
return _info[index+1];
|
||||
}
|
||||
|
||||
- (unsigned) frameLength
|
||||
- (NSUInteger) frameLength
|
||||
{
|
||||
return _argFrameLength;
|
||||
}
|
||||
|
||||
- (const char*) getArgumentTypeAtIndex: (unsigned)index
|
||||
- (const char*) getArgumentTypeAtIndex: (NSUInteger)index
|
||||
{
|
||||
if (index >= _numArgs)
|
||||
{
|
||||
|
@ -95,7 +95,7 @@
|
|||
return (_info[0].qual & _F_ONEWAY) ? YES : NO;
|
||||
}
|
||||
|
||||
- (unsigned) methodReturnLength
|
||||
- (NSUInteger) methodReturnLength
|
||||
{
|
||||
if (_info == 0)
|
||||
{
|
||||
|
@ -113,7 +113,7 @@
|
|||
return _info[0].type;
|
||||
}
|
||||
|
||||
- (unsigned) numberOfArguments
|
||||
- (NSUInteger) numberOfArguments
|
||||
{
|
||||
return _numArgs;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue