Use properties instead of ivars (#2453)

This commit is contained in:
Dmitry Serov
2022-02-22 16:04:20 +00:00
committed by GitHub
parent 95e30768c4
commit 54d1a02e92
103 changed files with 3653 additions and 3917 deletions

View File

@@ -4,23 +4,13 @@
#import <Cocoa/Cocoa.h>
@class Controller;
@interface URLSheetWindowController : NSWindowController
{
IBOutlet NSTextField* fLabelField;
IBOutlet NSTextField* fTextField;
IBOutlet NSButton* fOpenButton;
IBOutlet NSButton* fCancelButton;
Controller* fController;
}
@property(nonatomic, readonly) NSString* urlString;
- (instancetype)initWithController:(Controller*)controller;
- (instancetype)init;
- (void)openURLEndSheet:(id)sender;
- (void)openURLCancelEndSheet:(id)sender;
@property(nonatomic, readonly) NSString* urlString;
@end