Bring mac code into conformance with -Wobjc-missing-property-synthesis
This commit is contained in:
parent
f3c00e96aa
commit
eb7ccf8afa
3 changed files with 15 additions and 0 deletions
|
@ -25,6 +25,8 @@ const NSAutoresizingMaskOptions kDefaultAutoResizingMask =
|
||||||
|
|
||||||
@implementation DragRegionView
|
@implementation DragRegionView
|
||||||
|
|
||||||
|
@synthesize initialLocation;
|
||||||
|
|
||||||
- (BOOL)mouseDownCanMoveWindow
|
- (BOOL)mouseDownCanMoveWindow
|
||||||
{
|
{
|
||||||
return NO;
|
return NO;
|
||||||
|
|
|
@ -425,6 +425,9 @@ bool ScopedDisableResize::disable_resize_ = false;
|
||||||
|
|
||||||
@implementation AtomPreviewItem
|
@implementation AtomPreviewItem
|
||||||
|
|
||||||
|
@synthesize previewItemURL;
|
||||||
|
@synthesize previewItemTitle;
|
||||||
|
|
||||||
- (id)initWithURL:(NSURL*)url title:(NSString*)title {
|
- (id)initWithURL:(NSURL*)url title:(NSString*)title {
|
||||||
self = [super init];
|
self = [super init];
|
||||||
if (self) {
|
if (self) {
|
||||||
|
@ -480,6 +483,13 @@ enum {
|
||||||
|
|
||||||
@implementation AtomNSWindow
|
@implementation AtomNSWindow
|
||||||
|
|
||||||
|
@synthesize acceptsFirstMouse;
|
||||||
|
@synthesize disableAutoHideCursor;
|
||||||
|
@synthesize disableKeyOrMainWindow;
|
||||||
|
@synthesize windowButtonsOffset;
|
||||||
|
@synthesize quickLookItem;
|
||||||
|
@synthesize vibrantView;
|
||||||
|
|
||||||
- (void)setShell:(atom::NativeWindowMac*)shell {
|
- (void)setShell:(atom::NativeWindowMac*)shell {
|
||||||
shell_ = shell;
|
shell_ = shell;
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,9 @@
|
||||||
|
|
||||||
@implementation PopUpButtonHandler
|
@implementation PopUpButtonHandler
|
||||||
|
|
||||||
|
@synthesize savePanel;
|
||||||
|
@synthesize fileTypesList;
|
||||||
|
|
||||||
- (instancetype)initWithPanel:(NSSavePanel*)panel
|
- (instancetype)initWithPanel:(NSSavePanel*)panel
|
||||||
andTypesList:(NSArray*)typesList {
|
andTypesList:(NSArray*)typesList {
|
||||||
self = [super init];
|
self = [super init];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue