mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 15:11:04 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4924 72102866-910b-0410-8b05-ffd578937521
14 lines
383 B
Objective-C
14 lines
383 B
Objective-C
#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
|