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/CheatController.h | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'macosx/CheatController.h') diff --git a/macosx/CheatController.h b/macosx/CheatController.h index e943c5d2..fc53129c 100644 --- a/macosx/CheatController.h +++ b/macosx/CheatController.h @@ -8,16 +8,13 @@ @class PcsxrHexadecimalFormatter; @interface CheatController : NSWindowController -{ - IBOutlet NSTableView *cheatView; - - IBOutlet NSWindow *editCheatWindow; - IBOutlet NSTableView *editCheatView; - IBOutlet PcsxrHexadecimalFormatter *addressFormatter; - IBOutlet PcsxrHexadecimalFormatter *valueFormatter; - NSMutableArray *tempCheatCodes; - NSMutableArray *cheats; -} + +@property (weak) IBOutlet NSTableView *cheatView; +@property (weak) IBOutlet NSWindow *editCheatWindow; +@property (weak) IBOutlet NSTableView *editCheatView; +@property (weak) IBOutlet PcsxrHexadecimalFormatter *addressFormatter; +@property (weak) IBOutlet PcsxrHexadecimalFormatter *valueFormatter; + @property (readwrite, strong) NSMutableArray *tempCheatCodes; @property (readwrite, strong) NSMutableArray *cheats; -- cgit v1.2.3