deepDropUpload icon indicating copy to clipboard operation
deepDropUpload copied to clipboard

Error typing in DCFileDropController.j

Open peppemas opened this issue 13 years ago • 0 comments

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

peppemas avatar Mar 13 '11 11:03 peppemas