diff options
author | ritsuka <[email protected]> | 2015-08-06 09:50:09 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-08-06 09:50:09 +0000 |
commit | 21ea1a3f5c8334916b1927e95db19a0a29f28d63 (patch) | |
tree | bd7b1a6406b0d22c6fd822ce4d22cb60e094dbaa /macosx/HBTitleSelectionController.m | |
parent | d4a4a3ccd682ae6992902321e6bfcea0ff8c89a9 (diff) |
MacGui: switch back another property to assign, 10.7 does not support weak for NSWindowController and NSViewController classes
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7393 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBTitleSelectionController.m')
-rw-r--r-- | macosx/HBTitleSelectionController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBTitleSelectionController.m b/macosx/HBTitleSelectionController.m index 63622a093..7575eb74a 100644 --- a/macosx/HBTitleSelectionController.m +++ b/macosx/HBTitleSelectionController.m @@ -12,7 +12,7 @@ @property (nonatomic, readonly) NSArray *titles; @property (nonatomic, readonly) NSMutableArray *selection; -@property (nonatomic, readonly, weak) id<HBTitleSelectionDelegate> delegate; +@property (nonatomic, readonly, assign) id<HBTitleSelectionDelegate> delegate; @end |