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/HBAudio.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/HBAudio.h')
-rw-r--r-- | macosx/HBAudio.h | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/macosx/HBAudio.h b/macosx/HBAudio.h index 618bd2430..65655a3a6 100644 --- a/macosx/HBAudio.h +++ b/macosx/HBAudio.h @@ -21,18 +21,18 @@ extern NSString *keyAudioBitrate; @interface HBAudio : NSObject { - NSDictionary *track; - NSDictionary *codec; - NSDictionary *mixdown; - NSDictionary *sampleRate; - NSDictionary *bitRate; - NSNumber *drc; - NSNumber *gain; - NSNumber *videoContainerTag; - HBAudioController *controller; - NSMutableArray *codecs; - NSMutableArray *mixdowns; - NSMutableArray *bitRates; + NSDictionary * track; + NSDictionary * codec; + NSDictionary * mixdown; + NSDictionary * sampleRate; + NSDictionary * bitRate; + NSNumber * drc; + NSNumber * gain; + NSNumber * videoContainerTag; + HBAudioController * controller; + NSMutableArray * codecs; + NSMutableArray * mixdowns; + NSMutableArray * bitRates; } @property (nonatomic, retain) NSDictionary *track; @@ -58,4 +58,3 @@ extern NSString *keyAudioBitrate; - (void) setBitRateFromName: (NSString *) aValue; @end - |