diff options
author | ritsuka <[email protected]> | 2015-01-09 07:34:11 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-01-09 07:34:11 +0000 |
commit | e5e00e722af027f199cce7d31c79ec3d0a0688c0 (patch) | |
tree | 91326c26aa8447604a72eeb91ea332e0add5cbaa /macosx/HBAudioController.h | |
parent | 0bc96a19bd83d9c5d3694bbc8a8c88c5cc0d8c72 (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.h | 10 |
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 |