mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Mark strong properties as strong
Versions of the OS X 10.11 SDK prior to 10.11.4 require this to be done explicitly. This fixes the build on OS X 10.10 when using the OS X 10.11 SDK from Xcode 7.2.1 and earlier.
This commit is contained in:
committed by
Allan Odgaard
parent
0c8817e57a
commit
bade4054dc
@@ -21,7 +21,7 @@
|
||||
@property (nonatomic) OakDocumentView* documentView;
|
||||
@property (nonatomic) BundleGrammar* grammar;
|
||||
|
||||
@property (nonatomic) void(^callback)(SelectGrammarResponse, BundleGrammar*);
|
||||
@property (nonatomic, strong) void(^callback)(SelectGrammarResponse, BundleGrammar*);
|
||||
@end
|
||||
|
||||
static NSButton* OakSmallButton (NSString* title, SEL action, id target, NSInteger tag)
|
||||
|
||||
@@ -13,8 +13,8 @@ NS_ENUM(NSInteger) {
|
||||
PUBLIC @interface OakCommand : NSObject
|
||||
@property (nonatomic, weak) NSResponder* firstResponder;
|
||||
@property (nonatomic, readonly) NSUUID* identifier;
|
||||
@property (nonatomic) void(^modalEventLoopRunner)(OakCommand*, BOOL* didTerminate);
|
||||
@property (nonatomic) void(^terminationHandler)(OakCommand*, BOOL normalExit);
|
||||
@property (nonatomic, strong) void(^modalEventLoopRunner)(OakCommand*, BOOL* didTerminate);
|
||||
@property (nonatomic, strong) void(^terminationHandler)(OakCommand*, BOOL normalExit);
|
||||
@property (nonatomic) BOOL updateHTMLViewAtomically;
|
||||
@property (nonatomic, readonly) OakHTMLOutputView* htmlOutputView;
|
||||
- (instancetype)initWithBundleCommand:(bundle_command_t const&)aCommand;
|
||||
|
||||
Reference in New Issue
Block a user