mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 10:20:58 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4696 72102866-910b-0410-8b05-ffd578937521
12 lines
324 B
Objective-C
12 lines
324 B
Objective-C
#include <AppKit/NSTableHeaderCell.h>
|
|
#include <AppKit/NSColor.h>
|
|
|
|
@implementation NSTableHeaderCell
|
|
- (void)drawInteriorWithFrame:(NSRect)cellFrame
|
|
inView:(NSView *)controlView
|
|
{
|
|
[[NSColor darkGrayColor] set];
|
|
NSRectFill(cellFrame);
|
|
[super drawInteriorWithFrame: cellFrame inView: controlView];
|
|
}
|
|
@end
|