From 7ba77023c7fb96b732e8d2dbbc26c1437c4be124 Mon Sep 17 00:00:00 2001 From: Matej Bukovinski Date: Thu, 13 Dec 2012 23:45:10 +0100 Subject: [PATCH] Using spaces instead of tabs for indentation. - also configured the Xcode project to use spaces instead of tabs by default --- SDWebImage.xcodeproj/project.pbxproj | 1 + SDWebImage/SDWebImageDownloaderOperation.m | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/SDWebImage.xcodeproj/project.pbxproj b/SDWebImage.xcodeproj/project.pbxproj index acb9a3a4..e37a5852 100644 --- a/SDWebImage.xcodeproj/project.pbxproj +++ b/SDWebImage.xcodeproj/project.pbxproj @@ -140,6 +140,7 @@ 53922D70148C55820056699D /* Products */, ); sourceTree = ""; + usesTabs = 0; }; 53922D70148C55820056699D /* Products */ = { isa = PBXGroup; diff --git a/SDWebImage/SDWebImageDownloaderOperation.m b/SDWebImage/SDWebImageDownloaderOperation.m index 52f7af9c..df8db73c 100644 --- a/SDWebImage/SDWebImageDownloaderOperation.m +++ b/SDWebImage/SDWebImageDownloaderOperation.m @@ -71,10 +71,10 @@ if (self.connection) { - if (self.progressBlock) - { - self.progressBlock(0, -1); - } + if (self.progressBlock) + { + self.progressBlock(0, -1); + } [[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadStartNotification object:self]; } else