summaryrefslogtreecommitdiffstats
path: root/macosx/HBAudioController.h
diff options
context:
space:
mode:
authordynaflash <[email protected]>2011-05-26 15:48:37 +0000
committerdynaflash <[email protected]>2011-05-26 15:48:37 +0000
commite4683402a0d12ad84e3a3b7fc1a584a7491c5044 (patch)
tree8b74bba99334f4029ad3fbba8219071602f15d19 /macosx/HBAudioController.h
parent8ff47961addfc83c7e7b0e468b9b56d2c328b03e (diff)
MacGui: Clean up internal architecture of HB Audio and HBAudioController
- patch by blindjimmy ... as always .... thank you! - as per https://reviews.handbrake.fr/r/81/ git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4002 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioController.h')
-rw-r--r--macosx/HBAudioController.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBAudioController.h b/macosx/HBAudioController.h
index cfff30cf6..a998b446d 100644
--- a/macosx/HBAudioController.h
+++ b/macosx/HBAudioController.h
@@ -23,12 +23,12 @@ extern NSString *HBMixdownChangedNotification;
{
id myController;
NSMutableArray *audioArray; // the configured audio information
- NSMutableArray *masterTrackArray; // the master list of audio tracks from the title
+ NSArray *masterTrackArray; // the master list of audio tracks from the title
NSDictionary *noneTrack; // this represents no audio track selection
NSNumber *videoContainerTag; // initially is the default HB_MUX_MP4
}
-@property (nonatomic, readonly) NSArray *masterTrackArray;
+@property (nonatomic, readonly, retain) NSArray *masterTrackArray;
@property (nonatomic, readonly) NSDictionary *noneTrack;
@property (nonatomic, retain) NSNumber *videoContainerTag;