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/HBSubtitlesDefaultsController.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/HBSubtitlesDefaultsController.m')
-rw-r--r-- | macosx/HBSubtitlesDefaultsController.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBSubtitlesDefaultsController.m b/macosx/HBSubtitlesDefaultsController.m index cef2be1d7..3c458abac 100644 --- a/macosx/HBSubtitlesDefaultsController.m +++ b/macosx/HBSubtitlesDefaultsController.m @@ -5,14 +5,14 @@ It may be used under the terms of the GNU General Public License. */ #import "HBSubtitlesDefaultsController.h" -#import "HBSubtitlesSettings.h" +#import "HBSubtitlesDefaults.h" #import "HBLanguagesSelection.h" static void *HBSubtitlesDefaultsContex = &HBSubtitlesDefaultsContex; @interface HBSubtitlesDefaultsController () -@property (nonatomic, readonly) HBSubtitlesSettings *settings; +@property (nonatomic, readonly) HBSubtitlesDefaults *settings; @property (nonatomic, readonly) HBLanguagesSelection *languagesList; @property (assign) IBOutlet HBLanguageArrayController *tableController; @@ -22,7 +22,7 @@ static void *HBSubtitlesDefaultsContex = &HBSubtitlesDefaultsContex; @implementation HBSubtitlesDefaultsController -- (instancetype)initWithSettings:(HBSubtitlesSettings *)settings +- (instancetype)initWithSettings:(HBSubtitlesDefaults *)settings { self = [super initWithWindowNibName:@"SubtitlesDefaults"]; if (self) |