mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-03 00:30:42 +00:00
Fix decoding
This commit is contained in:
parent
f04f8536ec
commit
6184b12128
2 changed files with 64 additions and 33 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue