apps-projectcenter/PCLib/PCSplitView.m
Sergii Stoian b5953bef10 ProjectBuilder made optionally separate panel
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16528 72102866-910b-0410-8b05-ffd578937521
2003-04-23 11:06:43 +00:00

25 lines
360 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$
*/
#include "PCSplitView.h"
@implementation PCSplitView
- (float) dividerThickness
{
return 8.0f;
}
- (void)drawDividerInRect: (NSRect)aRect
{
[super drawDividerInRect: aRect];
}
@end