Files
cappuccino/AppKit/_CPCornerView.j
T
2009-09-21 13:27:50 -07:00

19 lines
244 B
Plaintext

@import "CPView.j"
@implementation _CPCornerView : CPView
{
}
- (id)initWithFrame:(CGRect)aFrame
{
if (self = [super initWithFrame:aFrame])
{
[self setBackgroundColor:[CPColor blueColor]];
}
return self;
}
@end