mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-20 14:56:36 +00:00
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:
parent
7a52d65d14
commit
fed5dc1dfb
13 changed files with 58 additions and 45 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue