diff --git a/ChangeLog b/ChangeLog index 820b925df..d979c7c7d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-10-29 Fred Kiefer + + * Headers/AppKit/NSLayoutAnchor.h: Add missing include that is required after a change in base. + * Source/NSTableView.m: Forward declare new methods. + 2024-08-29 Gregory John Casamento * Source/NSBundleAdditions.m: Quick fix for .gorm loading diff --git a/Headers/AppKit/NSLayoutAnchor.h b/Headers/AppKit/NSLayoutAnchor.h index bbdfed621..b1c75fd3c 100644 --- a/Headers/AppKit/NSLayoutAnchor.h +++ b/Headers/AppKit/NSLayoutAnchor.h @@ -27,6 +27,7 @@ #import #import +#import #if OS_API_VERSION(MAC_OS_X_VERSION_10_10, GS_API_LATEST) diff --git a/Source/NSTableView.m b/Source/NSTableView.m index eae550bf3..73a4d9f9a 100644 --- a/Source/NSTableView.m +++ b/Source/NSTableView.m @@ -162,6 +162,9 @@ - (BOOL) _isCellSelectableColumn: (NSInteger)columnIndex - (BOOL) _isCellEditableColumn: (NSInteger)columnIndex row: (NSInteger)rowIndex; - (NSInteger) _numRows; +- (CGFloat*) _columnOrigins; +- (NSView*) _renderedViewForPath: (NSIndexPath*)path; +- (void) _setRenderedView: (NSView*)view forPath: (NSIndexPath*)path; @end @interface NSTableView (SelectionHelper)