* Headers/AppKit/NSLayoutAnchor.h: Add missing include that is required after a change in base.

* Source/NSTableView.m: Forward declare new methods.
This commit is contained in:
Fred Kiefer 2024-10-29 22:42:06 +01:00
parent a32741a5d7
commit 349dc21144
3 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2024-10-29 Fred Kiefer <FredKiefer@gmx.de>
* 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 <greg.casamento@gmail.com>
* Source/NSBundleAdditions.m: Quick fix for .gorm loading

View file

@ -27,6 +27,7 @@
#import <AppKit/AppKitDefines.h>
#import <Foundation/NSObject.h>
#import <Foundation/NSGeometry.h>
#if OS_API_VERSION(MAC_OS_X_VERSION_10_10, GS_API_LATEST)

View file

@ -162,6 +162,9 @@ typedef struct _tableViewFlags
- (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)