From de50d760fd03a7eed9a614a3d4a701f2097c88d9 Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Fri, 13 Sep 2013 21:31:56 +0000 Subject: Changing a few Objective C classes to have their ivars hidden. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@87167 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/HotkeyController.h | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) (limited to 'macosx/HotkeyController.h') diff --git a/macosx/HotkeyController.h b/macosx/HotkeyController.h index baf539d5..d24a921c 100755 --- a/macosx/HotkeyController.h +++ b/macosx/HotkeyController.h @@ -6,22 +6,16 @@ #import @interface HotkeyController : NSView -{ - NSButton *lastConfigButton; - NSInteger configInput; - NSMutableDictionary *hotkeysList; - NSDictionary *keyNameTable; - NSMutableDictionary *hotkeyOutlets; - - IBOutlet NSTextField *FastForward; - IBOutlet NSTextField *SaveState; - IBOutlet NSTextField *LoadState; - IBOutlet NSTextField *NextState; - IBOutlet NSTextField *PrevState; - IBOutlet NSTextField *FrameLimit; -} -@property (assign) NSInteger configInput; +@property (weak) IBOutlet NSTextField *FastForward; +@property (weak) IBOutlet NSTextField *SaveState; +@property (weak) IBOutlet NSTextField *LoadState; +@property (weak) IBOutlet NSTextField *NextState; +@property (weak) IBOutlet NSTextField *PrevState; +@property (weak) IBOutlet NSTextField *FrameLimit; + + +@property NSInteger configInput; - (void) initialize; - (BOOL) handleMouseDown:(NSEvent *)mouseEvent; -- cgit v1.2.3