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/Bladesio1/macsrc/PluginConfigController.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'macosx/plugins/Bladesio1/macsrc/PluginConfigController.h') diff --git a/macosx/plugins/Bladesio1/macsrc/PluginConfigController.h b/macosx/plugins/Bladesio1/macsrc/PluginConfigController.h index 3adaf29b..71fee568 100755 --- a/macosx/plugins/Bladesio1/macsrc/PluginConfigController.h +++ b/macosx/plugins/Bladesio1/macsrc/PluginConfigController.h @@ -3,15 +3,14 @@ #import @interface Bladesio1PluginConfigController : NSWindowController -{ - IBOutlet NSButton *enabledButton; - IBOutlet NSTextField *ipAddressField; - IBOutlet NSTextField *portField; - IBOutlet NSPopUpButton *playerMenu; - IBOutlet NSBox *configBox; +@property (weak) IBOutlet NSButton *enabledButton; +@property (weak) IBOutlet NSTextField *ipAddressField; +@property (weak) IBOutlet NSTextField *portField; +@property (weak) IBOutlet NSPopUpButton *playerMenu; +@property (weak) IBOutlet NSBox *configBox; + +@property (strong) NSMutableDictionary *keyValues; - NSMutableDictionary *keyValues; -} - (IBAction)cancel:(id)sender; - (IBAction)ok:(id)sender; - (IBAction)toggleEnabled:(id)sender; -- cgit v1.2.3