-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Tried this out on debian-13 amd64. Works! (And the previous issue taught me where to find 'buildtool', so thanks for that).
There were many method signature mismatch errors logged to terminal. These go away by changing 'int' to 'NSInteger' on the following methods.
// - (int)numberOfRowsInTableView:(NSTableView *)tableView
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView
// - (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(int)row
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
// - (BOOL)tableView:(NSTableView *)tableView shouldSelectRow:(int)row
- (BOOL)tableView:(NSTableView *)tableView shouldSelectRow:(NSInteger)row
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels