summaryrefslogtreecommitdiffstats
path: root/macosx/HBAudioController.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2015-01-09 07:34:11 +0000
committerritsuka <[email protected]>2015-01-09 07:34:11 +0000
commite5e00e722af027f199cce7d31c79ec3d0a0688c0 (patch)
tree91326c26aa8447604a72eeb91ea332e0add5cbaa /macosx/HBAudioController.h
parent0bc96a19bd83d9c5d3694bbc8a8c88c5cc0d8c72 (diff)
MacGui: rename HBAudio class to HBAudioTrack.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6696 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioController.h')
-rw-r--r--macosx/HBAudioController.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/macosx/HBAudioController.h b/macosx/HBAudioController.h
index 83dba5c29..9088e5b92 100644
--- a/macosx/HBAudioController.h
+++ b/macosx/HBAudioController.h
@@ -8,7 +8,7 @@
#import <Cocoa/Cocoa.h>
@class HBJob;
-@class HBAudio;
+@class HBAudioTrack;
/**
* HBAudioController
@@ -25,16 +25,16 @@
- (void) applySettingsFromPreset:(NSDictionary *)preset;
- (BOOL) anyCodecMatches: (int) aCodecValue;
-- (void) settingTrackToNone: (HBAudio *) newNoneTrack;
-- (void) switchingTrackFromNone: (HBAudio *) noLongerNoneTrack;
+- (void) settingTrackToNone: (HBAudioTrack *) newNoneTrack;
+- (void) switchingTrackFromNone: (HBAudioTrack *) noLongerNoneTrack;
@end
@interface HBAudioController (KVC)
- (NSUInteger) countOfAudioArray;
-- (HBAudio *) objectInAudioArrayAtIndex: (NSUInteger) index;
-- (void) insertObject: (HBAudio *) audioObject inAudioArrayAtIndex: (NSUInteger) index;
+- (HBAudioTrack *) objectInAudioArrayAtIndex: (NSUInteger) index;
+- (void) insertObject: (HBAudioTrack *) audioObject inAudioArrayAtIndex: (NSUInteger) index;
- (void) removeObjectFromAudioArrayAtIndex: (NSUInteger) index;
@end