diff options
author | ritsuka <[email protected]> | 2014-08-22 06:30:58 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-08-22 06:30:58 +0000 |
commit | a13b937ba09ca5c29ef633114b0880a4f1213f0e (patch) | |
tree | ec065c3497235a60ddf03e1e87b9e6b362606f3f /macosx/HBAudioController.m | |
parent | c27510750ff919f6e9343e82d1047fe5cb0ff68b (diff) |
MacGui: renamed HB*Settings classes to HB*Defaults. Added a “…” char to the “Configure Defaults” button.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6341 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioController.m')
-rw-r--r-- | macosx/HBAudioController.m | 6 |
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]]; |