Remove commented out code.

This commit is contained in:
Gregory John Casamento 2021-04-20 05:54:34 -04:00
parent 9bd699c875
commit 130cc3c84c

View file

@ -58,28 +58,13 @@
{
if ([NSBundle loadNibNamed:@"Info" owner:self] == NO)
{
// PCLogError(self, @"error loading Menu NIB file!");
return;
}
[infoWindow center];
[infoWindow makeKeyAndOrderFront:self];
[versionField setStringValue:[NSString stringWithFormat:@"Version %@", [infoDict objectForKey:@"ApplicationRelease"]]];
/*#if defined(GNUSTEP)
if (!infoWindow)
{
infoWindow = [[GSInfoPanel alloc] initWithDictionary:infoDict];
}
[infoWindow setTitle:@"Info"];
[infoWindow center];
[infoWindow makeKeyAndOrderFront:self];
#else
NSRunAlertPanel(@"Info",
@"OPENSTEP has no support for GSInfoPanel",
@"OK",nil,nil,nil);
#endif*/
[versionField setStringValue:[NSString stringWithFormat:@"Version %@",
[infoDict objectForKey:@"ApplicationRelease"]]];
}
@end