diff options
author | Damiano Galassi <[email protected]> | 2015-10-13 10:22:02 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2015-10-13 10:22:02 +0200 |
commit | 14839ed2b8a7e4615b2c30fe8a46bb63819d0b40 (patch) | |
tree | f8684e1d7eb41fa1df0c420da50cd4f53f692e64 /macosx/HBAudio.m | |
parent | b8bcf81a60e505135cab3f6deeb090989012ba5e (diff) |
MacGui: remove some HBPreset -> NSDictionary conversions and add a mutable version of HBPreset.
Diffstat (limited to 'macosx/HBAudio.m')
-rw-r--r-- | macosx/HBAudio.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBAudio.m b/macosx/HBAudio.m index cb3a6ff99..5e66ef21b 100644 --- a/macosx/HBAudio.m +++ b/macosx/HBAudio.m @@ -415,12 +415,12 @@ NSString *HBAudioChangedNotification = @"HBAudioChangedNotification"; #pragma mark - Presets -- (void)writeToPreset:(NSMutableDictionary *)preset +- (void)writeToPreset:(HBMutablePreset *)preset { [self.defaults writeToPreset:preset]; } -- (void)applyPreset:(NSDictionary *)preset +- (void)applyPreset:(HBPreset *)preset { [self.defaults applyPreset:preset]; [self addTracksFromDefaults:NO]; |