mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 05:10:57 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4619 72102866-910b-0410-8b05-ffd578937521
9 lines
257 B
Objective-C
9 lines
257 B
Objective-C
@implementation NSTableHeaderCell
|
|
- (void)drawInteriorWithFrame:(NSRect)cellFrame
|
|
inView:(NSView *)controlView
|
|
{
|
|
[[NSColor darkGrayColor] set];
|
|
NSRectFill(cellFrame);
|
|
[super drawInteriorWithFrame: cellFrame inView: controlView];
|
|
}
|
|
@end
|