SkyTableView.m (opengroupware-5.5rc2) | : | SkyTableView.m (opengroupware-5.5rc3) | ||
---|---|---|---|---|
skipping to change at line 372 | skipping to change at line 372 | |||
} | } | |||
// do not use dataSource | // do not use dataSource | |||
else { | else { | |||
ASSIGN(self->dataSource, _dataSource); | ASSIGN(self->dataSource, _dataSource); | |||
} | } | |||
END_PROFILE; | END_PROFILE; | |||
} | } | |||
- (void)setSelections:(NSArray *)_selections { | - (void)setSelections:(NSArray *)_selections { | |||
ASSIGN(self->selections, _selections); | ASSIGN(self->selections, [NSMutableArray arrayWithArray: _selections]); | |||
} | } | |||
- (NSArray *)selections { | - (NSArray *)selections { | |||
return self->selections; | return self->selections; | |||
} | } | |||
- (void)setItem:(id)_item { | - (void)setItem:(id)_item { | |||
[self setValue:_item forBinding:@"item"]; | [self setValue:_item forBinding:@"item"]; | |||
ASSIGN(self->item, _item); | ASSIGN(self->item, _item); | |||
} | } | |||
- (id)item { | - (id)item { | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |