@@ -32,11 +32,11 @@ id ret; va_list args; va_start(args, first); ret = [[[self alloc] initWithObject: first - andArgList: args] autorelease]; + argList: args] autorelease]; va_end(args); return ret; } @@ -85,18 +85,18 @@ id ret; va_list args; va_start(args, first); ret = [self initWithObject: first - andArgList: args]; + argList: args]; va_end(args); return ret; } - initWithObject: (OFObject*)first - andArgList: (va_list)args + argList: (va_list)args { id obj; self = [self init]; @@ -219,14 +219,14 @@ } - addObject: (OFObject*)obj { @throw [OFNotImplementedException newWithClass: isa - andSelector: _cmd]; + selector: _cmd]; } - removeNObjects: (size_t)nobjects { @throw [OFNotImplementedException newWithClass: isa - andSelector: _cmd]; + selector: _cmd]; } @end