Removed a stale TODO; added more TODOs.

This commit is contained in:
Pietro Gagliardi 2018-06-24 14:48:09 -04:00
parent 4ed6e3ec8a
commit bd685f24f9
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,8 @@
#import "uipriv_darwin.h"
#import "table.h"
// TODO the initial scroll position is still wrong
@interface uiprivTableModel : NSObject<NSTableViewDataSource, NSTableViewDelegate> {
uiTableModel *m;
}
@ -72,7 +74,6 @@ static void setBackgroundColor(uiprivTableView *t, NSTableRowView *rv, NSInteger
- (NSView *)tableView:(NSTableView *)tv viewForTableColumn:(NSTableColumn *)cc row:(NSInteger)row
{
uiprivTableColumn *c = (uiprivTableColumn *) cc;
// TODO consider renaming this type to uiprivTableCellView
uiprivTableCellView *cv;
cv = (uiprivTableCellView *) [tv makeViewWithIdentifier:[c identifier] owner:self];