mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
19 lines
321 B
Plaintext
19 lines
321 B
Plaintext
|
|
@import "CPView.j"
|
|
|
|
@implementation _CPCornerView : CPView
|
|
{
|
|
}
|
|
|
|
- (id)initWithFrame:(CGRect)aFrame
|
|
{
|
|
if (self = [super initWithFrame:aFrame])
|
|
{
|
|
[self setBackgroundColor:[CPColor colorWithPatternImage:CPAppKitImage("tableview-headerview.png", CGSizeMake(1.0, 23.0))]];
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
@end
|