Default implementation of drawRect: is to call drawCell:

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4167 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1999-04-29 12:48:58 +00:00
parent 40c5b448e2
commit 6fa7d994f7

View file

@ -307,6 +307,11 @@ static id _NSCONTROL_CELL_CLASS = nil;
//
// Displaying the Control and Cell
//
- (void) drawRect: (NSRect)aRect
{
[self drawCell: cell];
}
- (void) drawCell: (NSCell *)aCell
{
if (cell == aCell)