mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-21 02:31:01 +00:00
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:
parent
a3d4279702
commit
2e2d056a79
2 changed files with 3 additions and 3 deletions
|
@ -240,7 +240,7 @@
|
||||||
object = [target valueForKeyPath:reference];
|
object = [target valueForKeyPath:reference];
|
||||||
[env setObject:object forName:name];
|
[env setObject:object forName:name];
|
||||||
NS_HANDLER
|
NS_HANDLER
|
||||||
if([[localException name] isEqualToString:NSUnknownKeyException])
|
if([[localException name] isEqualToString:NSUndefinedKeyException])
|
||||||
{
|
{
|
||||||
NSLog(@"Warning: Invalid object reference '%@'.", reference);
|
NSLog(@"Warning: Invalid object reference '%@'.", reference);
|
||||||
}
|
}
|
||||||
|
|
4
Version
4
Version
|
@ -3,8 +3,8 @@
|
||||||
|
|
||||||
# The version number of this release.
|
# The version number of this release.
|
||||||
MAJOR_VERSION=0
|
MAJOR_VERSION=0
|
||||||
MINOR_VERSION=8
|
MINOR_VERSION=9
|
||||||
SUBMINOR_VERSION=2
|
SUBMINOR_VERSION=0
|
||||||
|
|
||||||
STEPTALK_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
STEPTALK_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue