Remove what are most likely no ops but they could potentially cause a crash. (I haven't seen that happen, though.)

This commit is contained in:
Steve Checkoway
2005-12-13 06:56:57 +00:00
parent dc960d0b69
commit 947116ee67
@@ -40,7 +40,6 @@ void MakeNewCocoaWindow( const void *data, unsigned length )
[window setReleasedWhenClosed:YES];
[window center];
[window useOptimizedDrawing:YES];
[window setViewsNeedDisplay:YES];
[window setTitle:[NSString stringWithUTF8String:PRODUCT_NAME_VER]];
// There's only one window ever so don't display in the menu
@@ -51,7 +50,6 @@ void MakeNewCocoaWindow( const void *data, unsigned length )
[view addSubview:iView]; /* This retains iView */
[text setFont:[NSFont systemFontOfSize:12]];
[text setString:@"Initializing Hardware..."];
[text display];
[window makeKeyAndOrderFront:nil];
[pool release];