diff options
author | dynaflash <[email protected]> | 2011-06-13 20:27:46 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2011-06-13 20:27:46 +0000 |
commit | b3b9ef3add434b865c3deed92cb9e04a8703f389 (patch) | |
tree | 616b33751ec9a7f169051bd3227ee33d9768ca64 /macosx/HBAudioController.h | |
parent | ca73c363b550f8b45d05cdc626a4246b38d5f989 (diff) |
MacGui: HBAudio Indentation Cleanup
- Patch by Rodeo ... Thanks!
- Change hard tabs to 4 spaces
- Place the opening bracket of if, else if, else, while and for statements on another line, not the same line as the condition.
- Xcode's Edit > Format > Re-Indent on all files.
- This patch is purely about cosmetics and indentation. There shouldn't be any change in behavior.
- As per https://reviews.handbrake.fr/r/101/
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4054 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioController.h')
-rw-r--r-- | macosx/HBAudioController.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/macosx/HBAudioController.h b/macosx/HBAudioController.h index a998b446d..69c1d501a 100644 --- a/macosx/HBAudioController.h +++ b/macosx/HBAudioController.h @@ -20,13 +20,13 @@ extern NSString *HBMixdownChangedNotification; @interface HBAudioController : NSObject - { - id myController; - NSMutableArray *audioArray; // the configured audio information - NSArray *masterTrackArray; // the master list of audio tracks from the title - NSDictionary *noneTrack; // this represents no audio track selection - NSNumber *videoContainerTag; // initially is the default HB_MUX_MP4 - } +{ + id myController; + NSMutableArray * audioArray; // the configured audio information + NSArray * masterTrackArray; // the master list of audio tracks from the title + NSDictionary * noneTrack; // this represents no audio track selection + NSNumber * videoContainerTag; // initially is the default HB_MUX_MP4 +} @property (nonatomic, readonly, retain) NSArray *masterTrackArray; @property (nonatomic, readonly) NSDictionary *noneTrack; |