diff options
Diffstat (limited to 'macosx/CheatController.h')
| -rw-r--r-- | macosx/CheatController.h | 17 |
1 files changed, 7 insertions, 10 deletions
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 <NSWindowDelegate, NSTableViewDelegate> -{ - 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; |
