Removed a stale TODO; added more TODOs.
This commit is contained in:
parent
4ed6e3ec8a
commit
bd685f24f9
|
@ -2,6 +2,8 @@
|
||||||
#import "uipriv_darwin.h"
|
#import "uipriv_darwin.h"
|
||||||
#import "table.h"
|
#import "table.h"
|
||||||
|
|
||||||
|
// TODO the initial scroll position is still wrong
|
||||||
|
|
||||||
@interface uiprivTableModel : NSObject<NSTableViewDataSource, NSTableViewDelegate> {
|
@interface uiprivTableModel : NSObject<NSTableViewDataSource, NSTableViewDelegate> {
|
||||||
uiTableModel *m;
|
uiTableModel *m;
|
||||||
}
|
}
|
||||||
|
@ -72,7 +74,6 @@ static void setBackgroundColor(uiprivTableView *t, NSTableRowView *rv, NSInteger
|
||||||
- (NSView *)tableView:(NSTableView *)tv viewForTableColumn:(NSTableColumn *)cc row:(NSInteger)row
|
- (NSView *)tableView:(NSTableView *)tv viewForTableColumn:(NSTableColumn *)cc row:(NSInteger)row
|
||||||
{
|
{
|
||||||
uiprivTableColumn *c = (uiprivTableColumn *) cc;
|
uiprivTableColumn *c = (uiprivTableColumn *) cc;
|
||||||
// TODO consider renaming this type to uiprivTableCellView
|
|
||||||
uiprivTableCellView *cv;
|
uiprivTableCellView *cv;
|
||||||
|
|
||||||
cv = (uiprivTableCellView *) [tv makeViewWithIdentifier:[c identifier] owner:self];
|
cv = (uiprivTableCellView *) [tv makeViewWithIdentifier:[c identifier] owner:self];
|
||||||
|
|
Loading…
Reference in New Issue