From a96ba176322566d9d15b51c714984affcdfc6355 Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Mon, 10 Nov 2014 20:22:50 +0000 Subject: OS X: make all ivars either be in the implementation block, or converted to Objective C 2.0 properties. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@92227 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/plugins/DFInput/macsrc/PadView.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'macosx/plugins/DFInput/macsrc/PadView.h') diff --git a/macosx/plugins/DFInput/macsrc/PadView.h b/macosx/plugins/DFInput/macsrc/PadView.h index 8ab20ab5..5406a9f0 100755 --- a/macosx/plugins/DFInput/macsrc/PadView.h +++ b/macosx/plugins/DFInput/macsrc/PadView.h @@ -25,14 +25,12 @@ #import "ControllerList.h" @interface PadView : NSView -{ - IBOutlet NSTableView *tableView; - IBOutlet NSPopUpButton *typeMenu; - IBOutlet NSPopUpButton *deviceMenu; - ControllerList *controller; -} +@property (weak) IBOutlet NSTableView *tableView; +@property (weak) IBOutlet NSPopUpButton *typeMenu; +@property (weak) IBOutlet NSPopUpButton *deviceMenu; @property (weak) IBOutlet NSButton *useSDL2Check; +@property (strong) ControllerList *controllerList; - (IBAction)setType:(id)sender; - (IBAction)setDevice:(id)sender; -- cgit v1.2.3