OSDN Git Service

dvdnav: fix crash when poorly masterd disc has no menus
[handbrake-jp/handbrake-jp-git.git] / macosx / InstantHandBrake / WhiteBox.m
1 /* WhiteBox
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.fr/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #import "WhiteBox.h"
8
9 @implementation WhiteBox
10
11 - (void) drawRect: (NSRect) rect
12 {
13     [[NSColor whiteColor] set];
14     [[NSBezierPath bezierPathWithRect: rect] fill];
15     [super drawRect: rect];
16 }
17     
18 @end