mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +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
4d6c4d03ed
commit
e5562f19ab
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>
|
||||
|
||||
* Source/NSInvocation.m (-initWithTarget:selector:): Hack for
|
||||
|
|
|
@ -105,7 +105,7 @@ GSGetInstanceVariable(id obj, NSString *iVarName, void *data)
|
|||
}
|
||||
if (ivar == 0)
|
||||
{
|
||||
NSLog(@"Attempt to get non-existent ivar");
|
||||
NSLog(@"Attempt to get non-existent ivar '%s'", name);
|
||||
return NO;
|
||||
}
|
||||
|
||||
|
@ -148,7 +148,7 @@ GSSetInstanceVariable(id obj, NSString *iVarName, const void *data)
|
|||
}
|
||||
if (ivar == 0)
|
||||
{
|
||||
NSLog(@"Attempt to set non-existent ivar");
|
||||
NSLog(@"Attempt to set non-existent ivar '%s'", name);
|
||||
return NO;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue