summaryrefslogtreecommitdiffstats
path: root/macosx/HBAudio.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBAudio.h')
-rw-r--r--macosx/HBAudio.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/HBAudio.h b/macosx/HBAudio.h
index af37f4aa8..045970e6a 100644
--- a/macosx/HBAudio.h
+++ b/macosx/HBAudio.h
@@ -20,7 +20,7 @@ extern NSString *HBAudioChangedNotification;
- (instancetype)initWithTitle:(HBTitle *)title;
@property (nonatomic, readonly) NSMutableArray *tracks;
-@property (nonatomic, readonly) HBAudioDefaults *defaults;
+@property (nonatomic, readwrite) HBAudioDefaults *defaults;
- (void)addAllTracks;
- (void)removeAll;
@@ -30,7 +30,8 @@ extern NSString *HBAudioChangedNotification;
- (void)settingTrackToNone:(HBAudioTrack *)newNoneTrack;
- (void)switchingTrackFromNone:(nullable HBAudioTrack *)noLongerNoneTrack;
-- (void)containerChanged:(int)container;
+@property (nonatomic, readwrite) int container;
+@property (nonatomic, readwrite, weak, nullable) NSUndoManager *undo;
@end