Differences From Artifact [a812aa8773]:
- File src/OFURLHandler.m — part of check-in [b7c19f2e27] at 2017-12-23 22:08:52 on branch trunk — OFURLHandler: Add -[openItemAtURL:mode:] (user: js, size: 3149) [annotate] [blame] [check-ins using]
To Artifact [d27034ecd7]:
- File
src/OFURLHandler.m
— part of check-in
[c8defc67ad]
at
2017-12-29 21:33:41
on branch trunk
— OFURLHandler: Add methods for copy and move
Also refactor OFFileManager to make use of them. (user: js, size: 3327) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
168 169 170 171 172 173 174 175 |
}
- (void)createSymbolicLinkAtURL: (OFURL *)destination
withDestinationPath: (OFString *)source
{
OF_UNRECOGNIZED_SELECTOR
}
@end
| > > > > > > > > > > > > | 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
}
- (void)createSymbolicLinkAtURL: (OFURL *)destination
withDestinationPath: (OFString *)source
{
OF_UNRECOGNIZED_SELECTOR
}
- (bool)copyItemAtURL: (OFURL *)source
toURL: (OFURL *)destination
{
return false;
}
- (bool)moveItemAtURL: (OFURL *)source
toURL: (OFURL *)destination
{
return false;
}
@end
|