blob: 64d5c34909d41476e57afc3ad045bb1da4ef6b88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#import "WhiteBox.h"
@implementation WhiteBox
- (void) drawRect: (NSRect) rect
{
[[NSColor whiteColor] set];
[[NSBezierPath bezierPathWithRect: rect] fill];
[super drawRect: rect];
}
@end
|