Index: src/exceptions/OFCopyFileFailedException.h ================================================================== --- src/exceptions/OFCopyFileFailedException.h +++ src/exceptions/OFCopyFileFailedException.h @@ -32,29 +32,29 @@ @property (readonly) int errNo; #endif /** * \param class_ The class of the object which caused the exception - * \param src The original path - * \param dst The new path + * \param source The original path + * \param destination The new path * \return A new copy file failed exception */ + exceptionWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dst; + sourcePath: (OFString*)source + destinationPath: (OFString*)destination; /** * Initializes an already allocated copy file failed exception. * * \param class_ The class of the object which caused the exception - * \param src The original path - * \param dst The new path + * \param source The original path + * \param destination The new path * \return An initialized copy file failed exception */ - initWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dst; + sourcePath: (OFString*)source + destinationPath: (OFString*)destination; /** * \return The errno from when the exception was created */ - (int)errNo; Index: src/exceptions/OFCopyFileFailedException.m ================================================================== --- src/exceptions/OFCopyFileFailedException.m +++ src/exceptions/OFCopyFileFailedException.m @@ -23,16 +23,16 @@ #import "common.h" @implementation OFCopyFileFailedException + exceptionWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dst + sourcePath: (OFString*)source + destinationPath: (OFString*)destination { return [[[self alloc] initWithClass: class_ - sourcePath: src - destinationPath: dst] autorelease]; + sourcePath: source + destinationPath: destination] autorelease]; } - initWithClass: (Class)class_ { Class c = isa; @@ -40,18 +40,18 @@ @throw [OFNotImplementedException exceptionWithClass: c selector: _cmd]; } - initWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dst + sourcePath: (OFString*)source + destinationPath: (OFString*)destination { self = [super initWithClass: class_]; @try { - sourcePath = [src copy]; - destinationPath = [dst copy]; + sourcePath = [source copy]; + destinationPath = [destination copy]; errNo = GET_ERRNO; } @catch (id e) { [self release]; @throw e; } Index: src/exceptions/OFLinkFailedException.h ================================================================== --- src/exceptions/OFLinkFailedException.h +++ src/exceptions/OFLinkFailedException.h @@ -33,29 +33,29 @@ @property (readonly) int errNo; # endif /** * \param class_ The class of the object which caused the exception - * \param src The source for the link - * \param dest The destination for the link + * \param source The source for the link + * \param destination The destination for the link * \return A new link failed exception */ + exceptionWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dest; + sourcePath: (OFString*)source + destinationPath: (OFString*)destination; /** * Initializes an already allocated link failed exception. * * \param class_ The class of the object which caused the exception - * \param src The source for the link - * \param dest The destination for the link + * \param source The source for the link + * \param destination The destination for the link * \return An initialized link failed exception */ - initWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dest; + sourcePath: (OFString*)source + destinationPath: (OFString*)destination; /** * \return The errno from when the exception was created */ - (int)errNo; Index: src/exceptions/OFLinkFailedException.m ================================================================== --- src/exceptions/OFLinkFailedException.m +++ src/exceptions/OFLinkFailedException.m @@ -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; } Index: src/exceptions/OFRenameFileFailedException.h ================================================================== --- src/exceptions/OFRenameFileFailedException.h +++ src/exceptions/OFRenameFileFailedException.h @@ -32,29 +32,29 @@ @property (readonly) int errNo; #endif /** * \param class_ The class of the object which caused the exception - * \param src The original path - * \param dst The new path + * \param source The original path + * \param destination The new path * \return A new rename file failed exception */ + exceptionWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dst; + sourcePath: (OFString*)source + destinationPath: (OFString*)destination; /** * Initializes an already allocated rename failed exception. * * \param class_ The class of the object which caused the exception - * \param src The original path - * \param dst The new path + * \param source The original path + * \param destination The new path * \return An initialized rename file failed exception */ - initWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dst; + sourcePath: (OFString*)source + destinationPath: (OFString*)destination; /** * \return The errno from when the exception was created */ - (int)errNo; Index: src/exceptions/OFRenameFileFailedException.m ================================================================== --- src/exceptions/OFRenameFileFailedException.m +++ src/exceptions/OFRenameFileFailedException.m @@ -23,16 +23,16 @@ #import "common.h" @implementation OFRenameFileFailedException + exceptionWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dst + sourcePath: (OFString*)source + destinationPath: (OFString*)destination { return [[[self alloc] initWithClass: class_ - sourcePath: src - destinationPath: dst] autorelease]; + sourcePath: source + destinationPath: destination] autorelease]; } - initWithClass: (Class)class_ { Class c = isa; @@ -40,18 +40,18 @@ @throw [OFNotImplementedException exceptionWithClass: c selector: _cmd]; } - initWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dst + sourcePath: (OFString*)source + destinationPath: (OFString*)destination { self = [super initWithClass: class_]; @try { - sourcePath = [src copy]; - destinationPath = [dst copy]; + sourcePath = [source copy]; + destinationPath = [destination copy]; errNo = GET_ERRNO; } @catch (id e) { [self release]; @throw e; } Index: src/exceptions/OFSymlinkFailedException.h ================================================================== --- src/exceptions/OFSymlinkFailedException.h +++ src/exceptions/OFSymlinkFailedException.h @@ -33,29 +33,29 @@ @property (readonly) int errNo; #endif /** * \param class_ The class of the object which caused the exception - * \param src The source for the symlink - * \param dest The destination for the symlink + * \param source The source for the symlink + * \param destination The destination for the symlink * \return A new symlink failed exception */ + exceptionWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dest; + sourcePath: (OFString*)source + destinationPath: (OFString*)destination; /** * Initializes an already allocated symlink failed exception. * * \param class_ The class of the object which caused the exception - * \param src The source for the symlink - * \param dest The destination for the symlink + * \param source The source for the symlink + * \param destination The destination for the symlink * \return An initialized symlink failed exception */ - initWithClass: (Class)class_ - sourcePath: (OFString*)src - destinationPath: (OFString*)dest; + sourcePath: (OFString*)source + destinationPath: (OFString*)destination; /** * \return The errno from when the exception was created */ - (int)errNo; Index: src/exceptions/OFSymlinkFailedException.m ================================================================== --- src/exceptions/OFSymlinkFailedException.m +++ src/exceptions/OFSymlinkFailedException.m @@ -24,16 +24,16 @@ #import "common.h" #ifndef _WIN32 @implementation OFSymlinkFailedException + 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; }