Remove some debugging code.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2256 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Scott Christley 1997-03-20 19:28:14 +00:00
parent 1957d087a5
commit aa3bf02466
2 changed files with 3 additions and 4 deletions

View file

@ -62,8 +62,9 @@
//
- (void)drawRect:(NSRect)rect
{
NSLog(@"NSColorWell drawRect: %f %f %f %f\n", rect.origin.x, rect.origin.y,
rect.size.width, rect.size.height);
NSDebugLog(@"NSColorWell drawRect: %f %f %f %f\n", rect.origin.x,
rect.origin.y,
rect.size.width, rect.size.height);
// Draw border
if (is_bordered)

View file

@ -106,8 +106,6 @@ NSString *NSControlTextDidChangeNotification = @"NSControlTextDidChangeNotificat
id c;
c = NSCopyObject (self, 0, zone);
NSLog(@"NSControl: copyWithZone\n");
// make sure the new copy also has a new copy of the cell
[cell retain];
[c setCell: [[cell copy] autorelease]];