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