2002-11-27 Manuel Guesdon <mguesdon@orange-concept.com>

* Source/Additions/GSObjCRuntime.m: fixed type call typo
	in GSFindInstanceVariable


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15155 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Manuel Guesdon 2002-11-27 20:17:19 +00:00
parent 7c09917f11
commit 50324c7db1
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-11-27 Manuel Guesdon <mguesdon@orange-concept.com>
* Source/Additions/GSObjCRuntime.m: fixed type call typo
in GSFindInstanceVariable
2002-11-27 Adam Fedor <fedor@gnu.org>
* configure.ac (INCLUDE_FLAGS): New for holding flags needed for

View file

@ -42,7 +42,7 @@ BOOL
GSFindInstanceVariable(id obj, const char *name,
const char **type, unsigned int *size, int *offset)
{
return GSFindInstanceVariable(obj, name, type, size, offset);
return GSObjCFindInstanceVariable(obj, name, type, size, offset);
}
/**