Skip to content

Commit

Permalink
Fix new compiler issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mureev committed Aug 21, 2012
1 parent 1acf0c8 commit 14d5686
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Demo/Demo CMHTMLView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
AD4D9F4114ECCBF400E0EB9F /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0430;
LastUpgradeCheck = 0440;
ORGANIZATIONNAME = "Team Force LLC";
};
buildConfigurationList = AD4D9F4414ECCBF400E0EB9F /* Build configuration list for PBXProject "Demo CMHTMLView" */;
Expand Down
4 changes: 3 additions & 1 deletion Demo/Demo/ViewControllers/OfflineImagesViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ - (void)viewDidLoad {
}
}];

return nil;
// Hook for compiler
NSString *nilResult = nil;
return nilResult;
}
};

Expand Down
4 changes: 3 additions & 1 deletion Demo/Demo/ViewControllers/TranslucentViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ - (void)viewDidLoad {
}
}];

return nil;
// Hook for compiler
NSString *nilResult = nil;
return nilResult;
}
};

Expand Down

0 comments on commit 14d5686

Please sign in to comment.