mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Fixes bonaza.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4725 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5c9720878c
commit
a45234d75f
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
1999-08-19 Michael Hanni <mhanni@sprintmail.com>
|
||||||
|
|
||||||
|
* Source/NSObjCRuntime.m: patch from Tim Bissell to help in
|
||||||
|
debugging. (show which non-existant ivar you wanted.)
|
||||||
|
|
||||||
Tue Aug 3 12:36:54 1999 Adam Fedor <fedor@ultra.doc.com>
|
Tue Aug 3 12:36:54 1999 Adam Fedor <fedor@ultra.doc.com>
|
||||||
|
|
||||||
* Source/NSInvocation.m (-initWithTarget:selector:): Hack for
|
* Source/NSInvocation.m (-initWithTarget:selector:): Hack for
|
||||||
|
|
|
@ -105,7 +105,7 @@ GSGetInstanceVariable(id obj, NSString *iVarName, void *data)
|
||||||
}
|
}
|
||||||
if (ivar == 0)
|
if (ivar == 0)
|
||||||
{
|
{
|
||||||
NSLog(@"Attempt to get non-existent ivar");
|
NSLog(@"Attempt to get non-existent ivar '%s'", name);
|
||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -148,7 +148,7 @@ GSSetInstanceVariable(id obj, NSString *iVarName, const void *data)
|
||||||
}
|
}
|
||||||
if (ivar == 0)
|
if (ivar == 0)
|
||||||
{
|
{
|
||||||
NSLog(@"Attempt to set non-existent ivar");
|
NSLog(@"Attempt to set non-existent ivar '%s'", name);
|
||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue