mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
aed6c6902f
commit
008d42ead1
4 changed files with 10 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue