change weak ptr ref to strong

This commit is contained in:
Shelley Vohr 2018-02-10 21:04:26 -05:00
parent 3085c78bcf
commit 36cf548114
No known key found for this signature in database
GPG key ID: F13993A75599653C

View file

@ -15,8 +15,8 @@
#include "base/strings/sys_string_conversions.h"
@interface PopUpButtonHandler : NSObject
@property (nonatomic, weak) NSSavePanel *savePanel;
@property (nonatomic, weak) NSArray *fileTypes;
@property (nonatomic, strong) NSSavePanel *savePanel;
@property (nonatomic, strong) NSArray *fileTypes;
- (instancetype)initWithPanel:(NSSavePanel *)panel andTypes:(NSArray *)types;
- (void)selectFormat:(id)sender;
@end