Skip to content

method signature mismatch #2

@sheffler

Description

@sheffler

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions