Pierre Laurac 8 years ago
parent
commit
1f60aff73d
1 changed files with 4 additions and 4 deletions
  1. 4 4
      atom/browser/native_window_mac.mm

+ 4 - 4
atom/browser/native_window_mac.mm

@@ -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;