mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
minor CPTableView clean-ups-- fix missing semi-colon, missing parameter type, and missing space
This commit is contained in:
committed by
Randall Luecke
parent
7e863e7e96
commit
a8d02f43e2
@@ -3612,7 +3612,7 @@ var CPTableViewDataSourceKey = @"CPTableViewDataSourceKey",
|
||||
[aCoder encodeInt:_gridStyleMask forKey:CPTableViewGridStyleMaskKey];
|
||||
|
||||
[aCoder encodeBool:_usesAlternatingRowBackgroundColors forKey:CPTableViewUsesAlternatingBackgroundKey];
|
||||
[aCoder encodeObject:[self alternatingRowBackgroundColors] forKey:CPTableViewAlternatingRowColorsKey]
|
||||
[aCoder encodeObject:[self alternatingRowBackgroundColors] forKey:CPTableViewAlternatingRowColorsKey];
|
||||
|
||||
[aCoder encodeObject:_cornerView forKey:CPTableViewCornerViewKey];
|
||||
[aCoder encodeObject:_headerView forKey:CPTableViewHeaderViewKey];
|
||||
@@ -3622,10 +3622,10 @@ var CPTableViewDataSourceKey = @"CPTableViewDataSourceKey",
|
||||
|
||||
@implementation CPIndexSet (tableview)
|
||||
|
||||
- (void)removeMatches:otherSet
|
||||
- (void)removeMatches:(CPIndexSet)otherSet
|
||||
{
|
||||
var firstindex = [self firstIndex];
|
||||
var index = MIN(firstindex,[otherSet firstIndex]);
|
||||
var index = MIN(firstindex, [otherSet firstIndex]);
|
||||
var switchFlag = (index == firstindex);
|
||||
while(index != CPNotFound)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user