From 241dafdd57eef9694f753be3fd50b46ee846ad87 Mon Sep 17 00:00:00 2001 From: Martin Blech Date: Tue, 3 Jun 2014 11:37:22 -0300 Subject: [PATCH] Synthesize `executing` and `finished` properties. It wouldn't build on Xcode 6 otherwise. --- SDWebImage/SDWebImageDownloaderOperation.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SDWebImage/SDWebImageDownloaderOperation.m b/SDWebImage/SDWebImageDownloaderOperation.m index c0ec267..1a723d6 100644 --- a/SDWebImage/SDWebImageDownloaderOperation.m +++ b/SDWebImage/SDWebImageDownloaderOperation.m @@ -39,6 +39,9 @@ BOOL responseFromCached; } +@synthesize executing = _executing; +@synthesize finished = _finished; + - (id)initWithRequest:(NSURLRequest *)request options:(SDWebImageDownloaderOptions)options progress:(void (^)(NSInteger, NSInteger))progressBlock completed:(void (^)(UIImage *, NSData *, NSError *, BOOL))completedBlock cancelled:(void (^)())cancelBlock { if ((self = [super init])) { _request = request;