Fix decoding

This commit is contained in:
Gregory John Casamento 2020-11-15 01:34:04 -05:00
parent f04f8536ec
commit 6184b12128
2 changed files with 64 additions and 33 deletions

View file

@ -112,6 +112,12 @@ APPKIT_EXPORT const CGFloat NSGridViewSizeForContent;
@interface NSGridCell : NSObject <NSCoding>
{
NSView *_contentView;
NSGridRowAlignment _rowAlignment;
NSGridCellPlacement _xPlacement;
NSGridCellPlacement _yPlacement;
id _mergeHead;
NSGridRow *_owningRow;
NSGridColumn *_owningColumn;
}
- (NSView *) contentView;
@ -168,7 +174,6 @@ APPKIT_EXPORT const CGFloat NSGridViewSizeForContent;
@interface NSGridRow : NSObject <NSCoding>
{
NSGridView *_gridView;
NSMutableArray *_row;
NSGridCellPlacement _yPlacement;
CGFloat _height;
CGFloat _bottomPadding;