From 557f5542708fab48b8479f005f687119482f3553 Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Thu, 14 Jan 2021 22:58:19 -0500 Subject: [PATCH] [Sameboy] Add type annotations to GBImageView's grid arrays. --- Cocoa/GBImageView.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cocoa/GBImageView.h b/Cocoa/GBImageView.h index 0b93e66..c15c4e7 100644 --- a/Cocoa/GBImageView.h +++ b/Cocoa/GBImageView.h @@ -9,8 +9,8 @@ @end @interface GBImageView : NSImageView -@property (nonatomic, strong) NSArray *horizontalGrids; -@property (nonatomic, strong) NSArray *verticalGrids; +@property (nonatomic, strong) NSArray *horizontalGrids; +@property (nonatomic, strong) NSArray *verticalGrids; @property (nonatomic) bool displayScrollRect; @property NSRect scrollRect; @property (nonatomic, weak) IBOutlet id delegate;