Skip to content

Commit a6fffe5

Browse files
committed
Cleanup.
1 parent 7cc4423 commit a6fffe5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

SCXcodeMinimap/SCMiniMapView.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
@interface SCMiniMapView : NSScrollView <NSLayoutManagerDelegate>
1313

14-
@property (nonatomic, retain) NSTextView *textView;
15-
@property (nonatomic, retain) SCSelectionView *selectionView;
14+
@property (nonatomic, strong) NSTextView *textView;
15+
@property (nonatomic, strong) SCSelectionView *selectionView;
1616

17-
@property (nonatomic, assign) NSScrollView *editorScrollView;
17+
@property (nonatomic, weak) NSScrollView *editorScrollView;
1818
@property (nonatomic, assign) NSTextView *editorTextView;
1919

2020
- (void)updateTextView;

SCXcodeMinimap/SCMiniMapView.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
@interface SCMiniMapView ()
1515

16-
@property (nonatomic, retain) NSColor *backgroundColor;
17-
@property (nonatomic, retain) NSFont *font;
16+
@property (nonatomic, strong) NSColor *backgroundColor;
17+
@property (nonatomic, strong) NSFont *font;
1818

1919
@end
2020

SCXcodeMinimap/SCSelectionView.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
@interface SCSelectionView : NSView
1212

13-
@property (nonatomic, retain) NSColor *selectionColor;
13+
@property (nonatomic, strong) NSColor *selectionColor;
1414
@property (nonatomic, assign) BOOL shouldInverseColors;
1515

1616
@end

0 commit comments

Comments
 (0)