diff options
Diffstat (limited to 'macosx/HBSubtitlesController.m')
-rw-r--r-- | macosx/HBSubtitlesController.m | 6 |
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]; |