Skip to content

Commit

Permalink
Modernize SSCatalog main.m
Browse files Browse the repository at this point in the history
  • Loading branch information
soffes committed Oct 9, 2011
1 parent b8b2d76 commit 569df34
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions SSCatalog/Other Sources/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
// Copyright 2009 Sam Soffes, Inc. All rights reserved.
//

#import "SCAppDelegate.h"

int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"SCAppDelegate");
[pool release];
return retVal;
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([SCAppDelegate class]));
}
}

0 comments on commit 569df34

Please sign in to comment.