Update a couple more declarations to match NSView

This commit is contained in:
Justin Spahr-Summers 2015-04-09 14:46:45 -07:00
Родитель 5bfcdb4e29
Коммит fc6f83914a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -18,11 +18,11 @@
@interface RBLClipView : NSClipView
// The backing layer for this view.
@property (nonatomic, strong) CAScrollLayer *layer;
@property (atomic, strong) CAScrollLayer *layer;
// Whether the content in this view is opaque.
//
// Defaults to NO.
@property (nonatomic, getter = isOpaque) BOOL opaque;
@property (atomic, getter = isOpaque) BOOL opaque;
@end