Minor fix for conversion to GSObjCRuntime functions.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24204 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-12-15 06:19:42 +00:00
parent aed6c6902f
commit 008d42ead1
4 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2006-12-15 Richard Frith-Macdonald <rfm@gnu.org>
* Source/mframe.m:
* Source/cifframe.m:
* Source/callframe.m:
Fix error testing whether object is an instance.
2006-12-14 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/Foundation/NSPathUtilities.h:

View file

@ -283,7 +283,7 @@ callframe_do_call (DOContext *ctxt,
{
meth = GSGetMethod(object, selector, NO, YES);
}
else if (GSObjCIsInstance)
else if (GSObjCIsInstance(object))
{
meth = GSGetMethod(GSObjCClass(object), selector, YES, YES);
}

View file

@ -680,7 +680,7 @@ cifframe_do_call (DOContext *ctxt,
{
meth = GSGetMethod(object, selector, NO, YES);
}
else if (GSObjCIsInstance)
else if (GSObjCIsInstance(object))
{
meth = GSGetMethod(GSObjCClass(object), selector, YES, YES);
}

View file

@ -872,7 +872,7 @@ mframe_do_call (DOContext *ctxt,
{
meth = GSGetMethod(object, selector, NO, YES);
}
else if (GSObjCIsInstance)
else if (GSObjCIsInstance(object))
{
meth = GSGetMethod(GSObjCClass(object), selector, YES, YES);
}