another undefined key exception fix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@21360 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Stefan Urbanek 2005-06-25 17:56:03 +00:00
parent a3d4279702
commit 2e2d056a79
2 changed files with 3 additions and 3 deletions

View file

@ -240,7 +240,7 @@
object = [target valueForKeyPath:reference];
[env setObject:object forName:name];
NS_HANDLER
if([[localException name] isEqualToString:NSUnknownKeyException])
if([[localException name] isEqualToString:NSUndefinedKeyException])
{
NSLog(@"Warning: Invalid object reference '%@'.", reference);
}

View file

@ -3,8 +3,8 @@
# The version number of this release.
MAJOR_VERSION=0
MINOR_VERSION=8
SUBMINOR_VERSION=2
MINOR_VERSION=9
SUBMINOR_VERSION=0
STEPTALK_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}