mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
linter
This commit is contained in:
committed by
Kevin Sawicki
parent
9b19e6ee38
commit
1f60aff73d
@@ -280,16 +280,16 @@ bool ScopedDisableResize::disable_resize_ = false;
|
||||
|
||||
@interface AtomPreviewItem : NSObject <QLPreviewItem>
|
||||
|
||||
@property (nonatomic, retain) NSURL *previewItemURL;
|
||||
@property (nonatomic, retain) NSString *previewItemTitle;
|
||||
@property (nonatomic, retain) NSURL* previewItemURL;
|
||||
@property (nonatomic, retain) NSString* previewItemTitle;
|
||||
|
||||
- (id)initWithURL:(NSURL *)anURL title:(NSString *)aTitle;
|
||||
- (id)initWithURL:(NSURL*)url title:(NSString*)title;
|
||||
|
||||
@end
|
||||
|
||||
@implementation AtomPreviewItem
|
||||
|
||||
- (id)initWithURL:(NSURL *)url title:(NSString *)title {
|
||||
- (id)initWithURL:(NSURL*)url title:(NSString*)title {
|
||||
self = [super init];
|
||||
if (self) {
|
||||
self.previewItemURL = url;
|
||||
|
||||
Reference in New Issue
Block a user