diff options
Diffstat (limited to 'macosx/HBAudioController.m')
-rw-r--r-- | macosx/HBAudioController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBAudioController.m b/macosx/HBAudioController.m index afad54512..374441d85 100644 --- a/macosx/HBAudioController.m +++ b/macosx/HBAudioController.m @@ -170,7 +170,7 @@ NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification"; return tracksArray; } -- (void) addTracksFromQueue: (NSMutableDictionary *) aQueue +- (void) addTracksFromQueue: (NSArray *) queueArray { // Reinitialize the configured list of audio tracks @@ -178,7 +178,7 @@ NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification"; // The following is the pattern to follow, but with Audio%dTrack being the key to seek... // Can we assume that there will be no skip in the data? - for (NSDictionary *audioDict in aQueue[@"AudioList"]) + for (NSDictionary *audioDict in queueArray) { HBAudio *newAudio = [[HBAudio alloc] init]; [newAudio setController: self]; |