diff options
Diffstat (limited to 'Source/SPImageView.m')
-rw-r--r-- | Source/SPImageView.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPImageView.m b/Source/SPImageView.m index d56b7fa5..76a9b1ff 100644 --- a/Source/SPImageView.m +++ b/Source/SPImageView.m @@ -39,7 +39,7 @@ */ - (BOOL)performDragOperation:(id <NSDraggingInfo>)sender { - id delegateForUse = nil; + id<SPImageViewDelegate> delegateForUse = nil; // If the delegate or the delegate's content instance doesn't implement processUpdatedImageData:, // return the super's implementation @@ -113,7 +113,7 @@ - (void)paste:(id)sender { // [super paste:sender]; - id delegateForUse = nil; + id<SPImageViewDelegate> delegateForUse = nil; // If the delegate or the delegate's content instance doesn't implement processUpdatedImageData:, // return the super's implementation |