@@ -24,16 +24,16 @@ #import "common.h" #ifndef _WIN32 @implementation OFLinkFailedException + exceptionWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dest + sourcePath: (OFString*)source + destinationPath: (OFString*)destination { return [[[self alloc] initWithClass: class_ - sourcePath: src - destinationPath: dest] autorelease]; + sourcePath: source + destinationPath: destination] autorelease]; } - initWithClass: (Class)class_ { Class c = isa; @@ -41,18 +41,18 @@ @throw [OFNotImplementedException exceptionWithClass: c selector: _cmd]; } - initWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dest + sourcePath: (OFString*)source + destinationPath: (OFString*)destination { self = [super initWithClass: class_]; @try { - sourcePath = [src copy]; - destinationPath = [dest copy]; + sourcePath = [source copy]; + destinationPath = [destination copy]; errNo = GET_ERRNO; } @catch (id e) { [self release]; @throw e; }