deepDropUpload
deepDropUpload copied to clipboard
Error typing in DCFileDropController.j
Hello,
the lines containing this code:
if ([dropDelegate respondsToSelector:@selector(fileDropController:didBeginUpload:)])
[dropDelegate fileDropController:self didBeginUpload:upload];
should be:
if ([dropDelegate respondsToSelector:@selector(fileDropUploadController:didBeginUpload:)])
[dropDelegate fileDropUploadController:self didBeginUpload:upload];
so it's coherent with the other dropDelegate selector "setState"
Cheers, Giuseppe