Skip to content

Commit

Permalink
Using spaces instead of tabs for indentation.
Browse files Browse the repository at this point in the history
- also configured the Xcode project to use spaces instead of tabs by default
  • Loading branch information
matej committed Dec 13, 2012
1 parent 8575991 commit 7ba7702
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions SDWebImage.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
53922D70148C55820056699D /* Products */,
);
sourceTree = "<group>";
usesTabs = 0;
};
53922D70148C55820056699D /* Products */ = {
isa = PBXGroup;
Expand Down
8 changes: 4 additions & 4 deletions SDWebImage/SDWebImageDownloaderOperation.m
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ - (void)start

if (self.connection)
{
if (self.progressBlock)
{
self.progressBlock(0, -1);
}
if (self.progressBlock)
{
self.progressBlock(0, -1);
}
[[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadStartNotification object:self];
}
else
Expand Down

0 comments on commit 7ba7702

Please sign in to comment.