Use instantiateWithOwner:topLevelObjects

Removes deprecation warnings
This commit is contained in:
Corey Johnson
2013-03-11 10:26:46 -07:00
parent 634702005d
commit 8fec1e82ee

View File

@@ -29,7 +29,7 @@ int AtomMain(int argc, char* argv[]) {
NSString *mainNibName = [infoDictionary objectForKey:@"NSMainNibFile"];
NSNib *mainNib = [[NSNib alloc] initWithNibNamed:mainNibName bundle:[NSBundle bundleWithIdentifier:@"com.github.atom.framework"]];
[mainNib instantiateNibWithOwner:application topLevelObjects:nil];
[mainNib instantiateWithOwner:application topLevelObjects:nil];
CefRunMessageLoop();
}