summaryrefslogtreecommitdiff
path: root/redo/table_darwin.m
diff options
context:
space:
mode:
Diffstat (limited to 'redo/table_darwin.m')
-rw-r--r--redo/table_darwin.m2
1 files changed, 0 insertions, 2 deletions
diff --git a/redo/table_darwin.m b/redo/table_darwin.m
index ec5ab2f..9a16082 100644
--- a/redo/table_darwin.m
+++ b/redo/table_darwin.m
@@ -40,14 +40,12 @@ id newTable(void)
t = [[NSTableView alloc] initWithFrame:NSZeroRect];
[t setAllowsColumnReordering:NO];
[t setAllowsColumnResizing:YES];
- // TODO make this an option on all platforms
[t setAllowsMultipleSelection:NO];
[t setAllowsEmptySelection:YES];
[t setAllowsColumnSelection:NO];
return (id) t;
}
-// TODO other types
void tableAppendColumn(id t, char *name)
{
NSTableColumn *c;