mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
19 lines
246 B
Plaintext
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
|