mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
19 lines
251 B
Plaintext
19 lines
251 B
Plaintext
|
|
@import <AppKit/CPView.j>
|
|
|
|
|
|
@implementation CPTableHeaderView : CPView
|
|
{
|
|
}
|
|
|
|
- (void)initWithFrame:(CGRect)aFrame
|
|
{
|
|
self = [super initWithFrame:aFrame];
|
|
|
|
if (self)
|
|
[self setBackgroundColor:[CPColor redColor]];
|
|
|
|
return self;
|
|
}
|
|
|
|
@end |