diff options
author | Damiano Galassi <[email protected]> | 2015-10-28 08:11:53 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2015-10-28 08:11:53 +0100 |
commit | 445938b7d30f2c7c695e8250c1e44d765c63531c (patch) | |
tree | 09de32d661901bfd29ac55b2f48517fe92bfdbeb /macosx/HBAudioTrackPreset.h | |
parent | 79df3e5408dbe6908767ee8525bba4c2b13e6a77 (diff) |
MacGui: switched the audio defaults track tableview to view based, and fixed a number of typo.
Diffstat (limited to 'macosx/HBAudioTrackPreset.h')
-rw-r--r-- | macosx/HBAudioTrackPreset.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/macosx/HBAudioTrackPreset.h b/macosx/HBAudioTrackPreset.h index 0c96a3af8..1acd14a20 100644 --- a/macosx/HBAudioTrackPreset.h +++ b/macosx/HBAudioTrackPreset.h @@ -32,10 +32,10 @@ NS_ASSUME_NONNULL_BEGIN /** * Arrays of possible options for the track properties. */ -@property (nonatomic, readonly) NSArray *encoders; -@property (nonatomic, readonly) NSArray *mixdowns; -@property (nonatomic, readonly) NSArray *samplerates; -@property (nonatomic, readonly) NSArray *bitrates; +@property (nonatomic, readonly) NSArray<NSString *> *encoders; +@property (nonatomic, readonly) NSArray<NSString *> *mixdowns; +@property (nonatomic, readonly) NSArray<NSString *> *sampleRates; +@property (nonatomic, readonly) NSArray<NSString *> *bitRates; @property (nonatomic, readwrite, weak, nullable) NSUndoManager *undo; @@ -47,14 +47,14 @@ NS_ASSUME_NONNULL_END * A series of value trasformers to bridge the libhb enums * to the textual rapresentations used in the interface. */ -@interface HBEncoderTrasformer : NSValueTransformer +@interface HBEncoderTransformer : NSValueTransformer @end -@interface HBMixdownTrasformer : NSValueTransformer +@interface HBMixdownTransformer : NSValueTransformer @end -@interface HBSampleRateTrasformer : NSValueTransformer +@interface HBSampleRateTransformer : NSValueTransformer @end -@interface HBIntegerTrasformer : NSValueTransformer +@interface HBIntegerTransformer : NSValueTransformer @end
\ No newline at end of file |