Index: src/OFFile.h ================================================================== --- src/OFFile.h +++ src/OFFile.h @@ -217,11 +217,11 @@ * created * @param destination The path of the item which should symbolically link to the * source */ + (void)createSymbolicLinkAtPath: (OFString*)source - destinationPath: (OFString*)destination; + withDestinationPath: (OFString*)destination; /*! * @brief Returns the destination of the symbolic link at the specified path. * * @param path The path to the symbolic link Index: src/OFFile.m ================================================================== --- src/OFFile.m +++ src/OFFile.m @@ -642,11 +642,11 @@ } #endif #ifdef OF_HAVE_SYMLINK + (void)createSymbolicLinkAtPath: (OFString*)source - destinationPath: (OFString*)destination + withDestinationPath: (OFString*)destination { void *pool; if (source == nil || destination == nil) @throw [OFInvalidArgumentException exception];