diff options
author | ritsuka <[email protected]> | 2014-12-22 07:30:12 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-22 07:30:12 +0000 |
commit | 546f57a1402492f2aedeab1ca6cf9f3d3201795f (patch) | |
tree | f34dcfe06110e8411db490c807385983a2d87457 /macosx/HBSubtitlesController.m | |
parent | f258fb8da28967d8f2e2ddaf814233058197044f (diff) |
MacGui: fixed a number of memory leaks. Do not set some deprecated hb_job fields.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6637 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBSubtitlesController.m')
-rw-r--r-- | macosx/HBSubtitlesController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBSubtitlesController.m b/macosx/HBSubtitlesController.m index 5c0ab5322..05eafa537 100644 --- a/macosx/HBSubtitlesController.m +++ b/macosx/HBSubtitlesController.m @@ -43,8 +43,8 @@ NSString *keySubTrackLanguageIndex = @"keySubTrackLanguageIndex"; @property (assign) IBOutlet NSButton *reloadDefaults; // Subtitles arrays -@property (nonatomic, readwrite) NSMutableArray *subtitleArray; -@property (nonatomic, readwrite) NSMutableArray *subtitleSourceArray; +@property (nonatomic, readwrite, retain) NSMutableArray *subtitleArray; +@property (nonatomic, readwrite, retain) NSMutableArray *subtitleSourceArray; @property (nonatomic, readwrite, retain) NSString *foreignAudioSearchTrackName; @property (nonatomic, readwrite) int container; |