([NSString -cString]): Use -subclassResponsibility: instead of

-notImplemented:
([NSString -cStringLength]): Likewise.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@638 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-10-26 01:29:04 +00:00
parent c20c33ea5f
commit cb455b5536

View file

@ -600,13 +600,13 @@ static Class NSMutableString_c_concrete_class;
- (const char*) cString - (const char*) cString
{ {
[self notImplemented:_cmd]; [self subclassResponsibility:_cmd];
return NULL; return NULL;
} }
- (unsigned int) cStringLength - (unsigned int) cStringLength
{ {
[self notImplemented:_cmd]; [self subclassResponsibility:_cmd];
return 0; return 0;
} }