diff --git a/ChangeLog b/ChangeLog index 2b4825817..54b1f32b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-11-27 Matt Rice + + * Source/NSObject.m: Fix typo. + * Headers/Foundation/NSException.h: Export + NSObjectInaccessibleException. + 2006-11-25 Richard Frith-Macdonald * Source/NSCalendarDate.m: Fix buffer oiveflow vulnerability when diff --git a/Headers/Foundation/NSException.h b/Headers/Foundation/NSException.h index 13cf73f4a..63d9f597f 100644 --- a/Headers/Foundation/NSException.h +++ b/Headers/Foundation/NSException.h @@ -183,6 +183,12 @@ GS_EXPORT NSString* const NSRangeException; */ GS_EXPORT NSString* const NSCharacterConversionException; +/** + * An exception when a remote object is sent a message from a thread + * unable to access the object. + */ +GS_EXPORT NSString* const NSObjectInaccessibleException; + #if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST) /** * An exception used when some form of parsing fails. diff --git a/Source/NSObject.m b/Source/NSObject.m index 4414b6057..818d4e17b 100644 --- a/Source/NSObject.m +++ b/Source/NSObject.m @@ -1618,7 +1618,7 @@ GSDescriptionForClassMethod(pcl self, SEL aSel) * sent a -release message when the pool is destroyed.
* Returns the receiver.
* In GNUstep, the [NSObject+enableDoubleReleaseCheck:] method may be used - * to turn on checking for ratain/release errors in this method. + * to turn on checking for retain/release errors in this method. */ - (id) autorelease {