summaryrefslogtreecommitdiff
path: root/redo/table_darwin.m
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-08 20:14:25 -0400
committerPietro Gagliardi <[email protected]>2014-08-08 20:14:25 -0400
commit3200a0ca974e684e900dcb74e815c567488f1634 (patch)
tree502772a95de9a7f6445d969ddf0af0c3461b5bbf /redo/table_darwin.m
parent79ada1bdaa00a1dcebee65ab9bb77c51494d06a5 (diff)
More TODO/future plan separation.
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;