diff --git a/src/macos/AboutBox.m b/src/macos/AboutBox.m index 15f8d5d2c..a9d1a78fd 100644 --- a/src/macos/AboutBox.m +++ b/src/macos/AboutBox.m @@ -58,7 +58,6 @@ static AboutBox *sharedInstance = nil; NSString *versionString; NSDictionary *infoDictionary; CFBundleRef localInfoBundle; - NSDictionary *localInfoDict; if (![[NSBundle mainBundle] loadNibNamed:@"AboutBox" owner:self topLevelObjects:nil]) { @@ -73,7 +72,7 @@ static AboutBox *sharedInstance = nil; // Get the localized info dictionary (InfoPlist.strings) localInfoBundle = CFBundleGetMainBundle(); - localInfoDict = (NSDictionary *) CFBundleGetLocalInfoDictionary( localInfoBundle ); + CFBundleGetLocalInfoDictionary(localInfoBundle); // Setup the app name field appName = @"Stella";