From a3ac4842bd5c7058b1363f7d3307f61724fc7178 Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Tue, 10 Sep 2013 18:18:15 +0000 Subject: Remove 32-bit support on OS X. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@87114 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/plugins/DFCdrom/macsrc/PluginConfigController.m | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) (limited to 'macosx/plugins/DFCdrom/macsrc/PluginConfigController.m') diff --git a/macosx/plugins/DFCdrom/macsrc/PluginConfigController.m b/macosx/plugins/DFCdrom/macsrc/PluginConfigController.m index e33f182d..6ea5d12f 100755 --- a/macosx/plugins/DFCdrom/macsrc/PluginConfigController.m +++ b/macosx/plugins/DFCdrom/macsrc/PluginConfigController.m @@ -20,7 +20,6 @@ */ #import "PluginConfigController.h" -#import "ARCBridge.h" #include "cdr.h" #define APP_ID @"net.pcsxr.DFCdrom" @@ -48,10 +47,9 @@ void AboutDlgProc() if (path) { credits = [[NSAttributedString alloc] initWithPath: path documentAttributes:NULL]; - AUTORELEASEOBJNORETURN(credits); } else { - credits = AUTORELEASEOBJ([[NSAttributedString alloc] initWithString:@""]); + credits = [[NSAttributedString alloc] initWithString:@""]; } // Get Application Icon @@ -71,7 +69,6 @@ void AboutDlgProc() dispatch_async(dispatch_get_main_queue(), ^{ [NSApp orderFrontStandardAboutPanelWithOptions:infoPaneDict]; }); - RELEASEOBJ(infoPaneDict); } void ConfDlgProc() @@ -144,7 +141,6 @@ void ReadConfig() // and set global values accordingly ReadConfig(); - RELEASEOBJ(writeDic); self.keyValues = nil; [self close]; } @@ -172,15 +168,6 @@ void ReadConfig() } } -#if !__has_feature(objc_arc) -- (void)dealloc -{ - self.keyValues = nil; - - [super dealloc]; -} -#endif - - (void)awakeFromNib { } -- cgit v1.2.3