diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-11-10 19:46:07 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-11-10 19:46:07 +0000 |
| commit | 0f8e66e194b903763b6c580599eb47c11f154bdd (patch) | |
| tree | 18210577c9696330348dee2711614374c64c56fa /macosx/Source/ConfigurationController.h | |
| parent | 264fac97c436e9df0c0e94daef463a1f0a17d3e8 (diff) | |
| download | pcsxr-0f8e66e194b903763b6c580599eb47c11f154bdd.tar.gz | |
OS X: Move away from ivars in headers, beginning with the main app.
Also have NSString properties be declared with copy, as recommended by Apple.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@92226 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/Source/ConfigurationController.h')
| -rw-r--r-- | macosx/Source/ConfigurationController.h | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/macosx/Source/ConfigurationController.h b/macosx/Source/ConfigurationController.h index 4406a7a2..90dde217 100644 --- a/macosx/Source/ConfigurationController.h +++ b/macosx/Source/ConfigurationController.h @@ -11,20 +11,18 @@ extern NSString *const memCardChangeNumberKey; @class PcsxrMemCardController; @interface ConfigurationController : NSWindowController <NSWindowDelegate, NSTabViewDelegate> -{ - IBOutlet PluginController *cdromPlugin; - IBOutlet PluginController *graphicsPlugin; - IBOutlet PluginController *padPlugin; - IBOutlet PluginController *soundPlugin; - IBOutlet PluginController *netPlugin; - IBOutlet PluginController *sio1Plugin; - - IBOutlet PcsxrMemCardController *memCardEdit; - - // Hotkeys - IBOutlet HotkeyController *hkController; - IBOutlet NSTabViewItem *hkTab; -} +@property (weak) IBOutlet PluginController *cdromPlugin; +@property (weak) IBOutlet PluginController *graphicsPlugin; +@property (weak) IBOutlet PluginController *padPlugin; +@property (weak) IBOutlet PluginController *soundPlugin; +@property (weak) IBOutlet PluginController *netPlugin; +@property (weak) IBOutlet PluginController *sio1Plugin; + +@property (weak) IBOutlet PcsxrMemCardController *memCardEdit; + +// Hotkeys +@property (weak) IBOutlet HotkeyController *hkController; +@property (weak) IBOutlet NSTabViewItem *hkTab; @property (weak) IBOutlet NSButtonCell *noXaAudioCell; @property (weak) IBOutlet NSButtonCell *sioIrqAlwaysCell; |
