diff options
author | titer <[email protected]> | 2006-02-16 11:15:35 +0000 |
---|---|---|
committer | titer <[email protected]> | 2006-02-16 11:15:35 +0000 |
commit | 15d61e485dbec1381f3be2fd0e01b5e5a526c040 (patch) | |
tree | 88caf555f52030b2c66bc7167a5ca5a459200dbb /macosx/WhiteBox.m | |
parent | 11816dbdaa00911ecad2863d8aa3c7567b22b6c3 (diff) |
UI changes
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@25 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/WhiteBox.m')
-rw-r--r-- | macosx/WhiteBox.m | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/macosx/WhiteBox.m b/macosx/WhiteBox.m new file mode 100644 index 000000000..64d5c3490 --- /dev/null +++ b/macosx/WhiteBox.m @@ -0,0 +1,12 @@ +#import "WhiteBox.h" + +@implementation WhiteBox + +- (void) drawRect: (NSRect) rect +{ + [[NSColor whiteColor] set]; + [[NSBezierPath bezierPathWithRect: rect] fill]; + [super drawRect: rect]; +} + +@end |