@@ -374,12 +374,11 @@ * @brief Creates a directory at the specified URL. * * @param URL The URL of the directory to create * @param createParents Whether to create the parents of the directory */ -- (void)createDirectoryAtURL: (OFURL *)URL - createParents: (bool)createParents; +- (void)createDirectoryAtURL: (OFURL *)URL createParents: (bool)createParents; #ifdef OF_HAVE_FILES /** * @brief Returns an array with the items in the specified directory. * @@ -427,12 +426,11 @@ * directory. * * @param source The file, directory or symbolic link to copy * @param destination The destination path */ -- (void)copyItemAtPath: (OFString *)source - toPath: (OFString *)destination; +- (void)copyItemAtPath: (OFString *)source toPath: (OFString *)destination; #endif /** * @brief Copies a file, directory or symbolic link (if supported by the OS). * @@ -444,12 +442,11 @@ * directory. * * @param source The file, directory or symbolic link to copy * @param destination The destination URL */ -- (void)copyItemAtURL: (OFURL *)source - toURL: (OFURL *)destination; +- (void)copyItemAtURL: (OFURL *)source toURL: (OFURL *)destination; #ifdef OF_HAVE_FILES /** * @brief Moves an item. * @@ -461,12 +458,11 @@ * removed using @ref removeItemAtPath:. * * @param source The item to rename * @param destination The new name for the item */ -- (void)moveItemAtPath: (OFString *)source - toPath: (OFString *)destination; +- (void)moveItemAtPath: (OFString *)source toPath: (OFString *)destination; #endif /** * @brief Moves an item. * @@ -478,12 +474,11 @@ * @ref copyItemAtURL:toURL: and the source removed using @ref removeItemAtURL:. * * @param source The item to rename * @param destination The new name for the item */ -- (void)moveItemAtURL: (OFURL *)source - toURL: (OFURL *)destination; +- (void)moveItemAtURL: (OFURL *)source toURL: (OFURL *)destination; #ifdef OF_HAVE_FILES /** * @brief Removes the item at the specified path. * @@ -513,12 +508,11 @@ * This method is not available on some systems. * * @param source The path to the item for which a link should be created * @param destination The path to the item which should link to the source */ -- (void)linkItemAtPath: (OFString *)source - toPath: (OFString *)destination; +- (void)linkItemAtPath: (OFString *)source toPath: (OFString *)destination; #endif /** * @brief Creates a hard link for the specified item. * @@ -528,12 +522,11 @@ * This method is not available for all URLs. * * @param source The URL to the item for which a link should be created * @param destination The URL to the item which should link to the source */ -- (void)linkItemAtURL: (OFURL *)source - toURL: (OFURL *)destination; +- (void)linkItemAtURL: (OFURL *)source toURL: (OFURL *)destination; #ifdef OF_FILE_MANAGER_SUPPORTS_SYMLINKS /** * @brief Creates a symbolic link for an item. *