summaryrefslogtreecommitdiffstats
path: root/macosx/HBSubtitlesController.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-11-02 15:12:15 +0000
committerritsuka <[email protected]>2014-11-02 15:12:15 +0000
commit2857c1fd3d6762d787a90474440b1def74223232 (patch)
tree090fe602c738b294a2d504fdea0df9b3499050e4 /macosx/HBSubtitlesController.h
parent8e21821e0a65b7b81c27c3cd7f398193be731ab3 (diff)
MacGui: fixed a issue that happened on 10.8 when reloading a job from the queue: we tried to add an object to an immutable NSArray that for some reason known to the Cocoa framework was a NSMutableArray on 10.9+ , but not on 10.8.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6496 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBSubtitlesController.h')
-rw-r--r--macosx/HBSubtitlesController.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBSubtitlesController.h b/macosx/HBSubtitlesController.h
index 013074cf0..dd41d1d81 100644
--- a/macosx/HBSubtitlesController.h
+++ b/macosx/HBSubtitlesController.h
@@ -29,7 +29,7 @@ extern NSString *keySubTrackSrtCharCode;
*/
@interface HBSubtitlesController : NSViewController <HBViewValidation>
-- (void)addTracksFromQueue:(NSMutableArray *)newSubtitleArray;
+- (void)addTracksFromQueue:(NSArray *)queueSubtitleArray;
- (void)applySettingsFromPreset:(NSDictionary *)preset;