mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
Fix some argument names for autogsdoc
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12538 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7bd3105385
commit
c21ef3f265
7 changed files with 43 additions and 39 deletions
|
@ -119,13 +119,13 @@ GSInstanceVariableInfo(id obj, NSString *iVarName,
|
|||
}
|
||||
|
||||
BOOL
|
||||
GSGetInstanceVariable(id obj, NSString *iVarName, void *data)
|
||||
GSGetInstanceVariable(id obj, NSString *name, void *data)
|
||||
{
|
||||
int offset;
|
||||
const char *type;
|
||||
unsigned int size;
|
||||
|
||||
if (GSInstanceVariableInfo(obj, iVarName, &type, &size, &offset) == NO)
|
||||
if (GSInstanceVariableInfo(obj, name, &type, &size, &offset) == NO)
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
@ -136,13 +136,13 @@ GSGetInstanceVariable(id obj, NSString *iVarName, void *data)
|
|||
}
|
||||
|
||||
BOOL
|
||||
GSSetInstanceVariable(id obj, NSString *iVarName, const void *data)
|
||||
GSSetInstanceVariable(id obj, NSString *name, const void *data)
|
||||
{
|
||||
int offset;
|
||||
const char *type;
|
||||
unsigned int size;
|
||||
|
||||
if (GSInstanceVariableInfo(obj, iVarName, &type, &size, &offset) == NO)
|
||||
if (GSInstanceVariableInfo(obj, name, &type, &size, &offset) == NO)
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue