Replace use of NSLog with NSDebugLog

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@1644 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
GNUstep Maintainer 1996-07-11 00:59:30 +00:00
parent 7a52d65d14
commit fed5dc1dfb
13 changed files with 58 additions and 45 deletions

View file

@ -260,22 +260,22 @@
{
[super encodeWithCoder:aCoder];
NSLog(@"NSButtonCell: start encoding\n");
NSDebugLog(@"NSButtonCell: start encoding\n");
[aCoder encodeObject: alt_contents];
[aCoder encodeObject: alt_image];
[aCoder encodeValueOfObjCType: @encode(BOOL) at: &transparent];
NSLog(@"NSButtonCell: finish encoding\n");
NSDebugLog(@"NSButtonCell: finish encoding\n");
}
- initWithCoder:aDecoder
{
[super initWithCoder:aDecoder];
NSLog(@"NSButtonCell: start decoding\n");
NSDebugLog(@"NSButtonCell: start decoding\n");
alt_contents = [aDecoder decodeObject];
alt_image = [aDecoder decodeObject];
[aDecoder decodeValueOfObjCType: @encode(BOOL) at: &transparent];
NSLog(@"NSButtonCell: finish decoding\n");
NSDebugLog(@"NSButtonCell: finish decoding\n");
return self;
}