summaryrefslogtreecommitdiffstats
path: root/macosx/HBAudioController.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBAudioController.m')
-rw-r--r--macosx/HBAudioController.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBAudioController.m b/macosx/HBAudioController.m
index df623d877..1a5f7c47b 100644
--- a/macosx/HBAudioController.m
+++ b/macosx/HBAudioController.m
@@ -8,7 +8,7 @@
#import "HBAudioController.h"
#import "Controller.h"
#import "HBAudio.h"
-#import "HBAudioSettings.h"
+#import "HBAudioDefaults.h"
#import "HBAudioDefaultsController.h"
#import "HBAudioTrackPreset.h"
#import "hb.h"
@@ -44,7 +44,7 @@ NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification";
// Defaults
@property (nonatomic, readwrite, retain) HBAudioDefaultsController *defaultsController;
-@property (nonatomic, readwrite, retain) HBAudioSettings *settings;
+@property (nonatomic, readwrite, retain) HBAudioDefaults *settings;
@end
@@ -199,7 +199,7 @@ NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification";
- (void)applySettingsFromPreset:(NSDictionary *)preset
{
- self.settings = [[[HBAudioSettings alloc] init] autorelease];
+ self.settings = [[[HBAudioDefaults alloc] init] autorelease];
[self.settings applySettingsFromPreset:preset];
[self.settings validateEncoderFallbackForVideoContainer:[self.videoContainerTag intValue]];