Files
cappuccino/AppKit/_CPCornerView.j
T

19 lines
246 B
Plaintext

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