OSDN Git Service

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