libs-gui/Source/NSTableHeaderCell.m

15 lines
383 B
Mathematica
Raw Normal View History

#include <AppKit/NSTableHeaderCell.h>
#include <AppKit/NSColor.h>
@implementation NSTableHeaderCell
- (void) drawInteriorWithFrame: (NSRect)cellFrame
inView: (NSView *)controlView
{
[controlView lockFocus];
[[NSColor controlShadowColor] set];
NSRectFill(cellFrame);
[super drawInteriorWithFrame: cellFrame inView: controlView];
[controlView unlockFocus];
}
@end