Skip to content

Commit

Permalink
Added missing @
Browse files Browse the repository at this point in the history
  • Loading branch information
Aparajita Fishman committed Jul 4, 2012
1 parent 16b7093 commit 1d29fda
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions AppKit/CPTableView.j
Expand Up @@ -723,7 +723,7 @@ NOT YET IMPLEMENTED

- (void)setAlternatingRowBackgroundColors:(CPArray)alternatingRowBackgroundColors
{
[self setValue:alternatingRowBackgroundColors forThemeAttribute:"alternating-row-colors"];
[self setValue:alternatingRowBackgroundColors forThemeAttribute:@"alternating-row-colors"];

[self setNeedsDisplay:YES];
}
Expand Down Expand Up @@ -781,7 +781,7 @@ NOT YET IMPLEMENTED
*/
- (void)setSelectionHighlightColor:(CPColor)aColor
{
[self setValue:aColor forThemeAttribute:"selection-color"];
[self setValue:aColor forThemeAttribute:@"selection-color"];

[self setNeedsDisplay:YES];
}
Expand All @@ -807,7 +807,7 @@ NOT YET IMPLEMENTED
*/
- (void)setSelectionGradientColors:(CPDictionary)aDictionary
{
[self setValue:aDictionary forThemeAttribute:"sourcelist-selection-color"];
[self setValue:aDictionary forThemeAttribute:@"sourcelist-selection-color"];

[self setNeedsDisplay:YES];
}
Expand All @@ -831,7 +831,7 @@ NOT YET IMPLEMENTED
*/
- (void)setGridColor:(CPColor)aColor
{
[self setValue:aColor forThemeAttribute:"grid-color"];
[self setValue:aColor forThemeAttribute:@"grid-color"];

[self setNeedsDisplay:YES];
}
Expand Down Expand Up @@ -2725,15 +2725,15 @@ Your delegate can implement this method to avoid subclassing the tableview to ad
*/
- (CPImage)_tableHeaderSortImage
{
return [self currentValueForThemeAttribute:"sort-image"];
return [self currentValueForThemeAttribute:@"sort-image"];
}

/*!
@ignore
*/
- (CPImage)_tableHeaderReverseSortImage
{
return [self currentValueForThemeAttribute:"sort-image-reversed"];
return [self currentValueForThemeAttribute:@"sort-image-reversed"];
}

/*!
Expand Down Expand Up @@ -3840,7 +3840,7 @@ Your delegate can implement this method to avoid subclassing the tableview to ad
}

CGContextClosePath(context);
CGContextSetStrokeColor(context, [self currentValueForThemeAttribute:"highlighted-grid-color"]);
CGContextSetStrokeColor(context, [self currentValueForThemeAttribute:@"highlighted-grid-color"]);
CGContextStrokePath(context);
}

Expand Down

0 comments on commit 1d29fda

Please sign in to comment.