summaryrefslogtreecommitdiffstats
path: root/macosx/HBSubtitlesController.m
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-08-22 06:30:58 +0000
committerritsuka <[email protected]>2014-08-22 06:30:58 +0000
commita13b937ba09ca5c29ef633114b0880a4f1213f0e (patch)
treeec065c3497235a60ddf03e1e87b9e6b362606f3f /macosx/HBSubtitlesController.m
parentc27510750ff919f6e9343e82d1047fe5cb0ff68b (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/HBSubtitlesController.m')
-rw-r--r--macosx/HBSubtitlesController.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBSubtitlesController.m b/macosx/HBSubtitlesController.m
index 996105796..92cc1d1db 100644
--- a/macosx/HBSubtitlesController.m
+++ b/macosx/HBSubtitlesController.m
@@ -6,7 +6,7 @@
#import "HBSubtitlesController.h"
#import "HBSubtitlesDefaultsController.h"
-#import "HBSubtitlesSettings.h"
+#import "HBSubtitlesDefaults.h"
#import "Controller.h"
#include "hb.h"
@@ -51,7 +51,7 @@ NSString *keySubTrackLanguageIndex = @"keySubTrackLanguageIndex";
// Defaults
@property (nonatomic, readwrite, retain) HBSubtitlesDefaultsController *defaultsController;
-@property (nonatomic, readwrite, retain) HBSubtitlesSettings *settings;
+@property (nonatomic, readwrite, retain) HBSubtitlesDefaults *settings;
// Table view cells models
@property (nonatomic, readonly) NSArray *charCodeArray;
@@ -221,7 +221,7 @@ NSString *keySubTrackLanguageIndex = @"keySubTrackLanguageIndex";
- (void)applySettingsFromPreset:(NSDictionary *)preset
{
- self.settings = [[[HBSubtitlesSettings alloc] init] autorelease];
+ self.settings = [[[HBSubtitlesDefaults alloc] init] autorelease];
[self.settings applySettingsFromPreset:preset];
[self addTracksFromDefaults:self];