diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-11-10 20:22:50 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-11-10 20:22:50 +0000 |
| commit | a96ba176322566d9d15b51c714984affcdfc6355 (patch) | |
| tree | fe6496196975b981955a580d0a0442c235037749 /macosx/plugins/DFSound/macsrc/SPUPluginController.h | |
| parent | 0f8e66e194b903763b6c580599eb47c11f154bdd (diff) | |
| download | pcsxr-a96ba176322566d9d15b51c714984affcdfc6355.tar.gz | |
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
Diffstat (limited to 'macosx/plugins/DFSound/macsrc/SPUPluginController.h')
| -rw-r--r-- | macosx/plugins/DFSound/macsrc/SPUPluginController.h | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/macosx/plugins/DFSound/macsrc/SPUPluginController.h b/macosx/plugins/DFSound/macsrc/SPUPluginController.h index d1e6924a..8fe29fe2 100644 --- a/macosx/plugins/DFSound/macsrc/SPUPluginController.h +++ b/macosx/plugins/DFSound/macsrc/SPUPluginController.h @@ -10,19 +10,16 @@ #import "NamedSlider.h" @interface SPUPluginController : NSWindowController -{ - IBOutlet NSCell *hiCompBox; - IBOutlet NamedSlider *interpolValue; - IBOutlet NSCell *irqWaitBox; - IBOutlet NSCell *monoSoundBox; - IBOutlet NamedSlider *reverbValue; - IBOutlet NSCell *xaEnableBox; - IBOutlet NSCell *xaSpeedBox; - IBOutlet NamedSlider *volumeValue; - - NSMutableDictionary *keyValues; -} +@property (weak) IBOutlet NSCell *hiCompBox; +@property (weak) IBOutlet NamedSlider *interpolValue; +@property (weak) IBOutlet NSCell *irqWaitBox; +@property (weak) IBOutlet NSCell *monoSoundBox; +@property (weak) IBOutlet NamedSlider *reverbValue; +@property (weak) IBOutlet NSCell *xaEnableBox; +@property (weak) IBOutlet NSCell *xaSpeedBox; +@property (weak) IBOutlet NamedSlider *volumeValue; @property (readwrite, strong) NSMutableDictionary *keyValues; + - (IBAction)cancel:(id)sender; - (IBAction)ok:(id)sender; - (IBAction)reset:(id)sender; |
