mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 19:01:18 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@12227 72102866-910b-0410-8b05-ffd578937521
25 lines
361 B
Objective-C
25 lines
361 B
Objective-C
/*
|
|
* PCSplitView.m created by probert on 2002-01-27 13:36:08 +0000
|
|
*
|
|
* Project ProjectCenter
|
|
*
|
|
* Created with ProjectCenter - http://www.gnustep.org
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#import "PCSplitView.h"
|
|
|
|
@implementation PCSplitView
|
|
|
|
- (float)dividerThickness
|
|
{
|
|
return 12.0f;
|
|
}
|
|
|
|
- (void)drawDividerInRect:(NSRect)aRect
|
|
{
|
|
[super drawDividerInRect:aRect];
|
|
}
|
|
|
|
@end
|