From 130cc3c84cdd5ab4720e89490c446b1f2d637ea2 Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Tue, 20 Apr 2021 05:54:34 -0400 Subject: [PATCH] Remove commented out code. --- PCInfoController.m | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/PCInfoController.m b/PCInfoController.m index bc858dd..4cea743 100644 --- a/PCInfoController.m +++ b/PCInfoController.m @@ -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