Document. Fix up NSDebugLogs

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14727 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2002-10-12 03:14:22 +00:00
parent a29dff6d37
commit 9f39142905
24 changed files with 199 additions and 159 deletions

View file

@ -1111,8 +1111,6 @@
BOOL tmp;
[super encodeWithCoder: aCoder];
NSDebugLog(@"NSButtonCell: start encoding\n");
[aCoder encodeObject: _keyEquivalent];
[aCoder encodeObject: _keyEquivalentFont];
[aCoder encodeObject: _altContents];
@ -1127,7 +1125,6 @@
[aCoder encodeValueOfObjCType: @encode(unsigned int)
at: &_showAltStateMask];
NSDebugLog(@"NSButtonCell: finish encoding\n");
}
- (id) initWithCoder: (NSCoder*)aDecoder
@ -1136,8 +1133,6 @@
BOOL tmp;
[super initWithCoder: aDecoder];
NSDebugLog(@"NSButtonCell: start decoding\n");
[aDecoder decodeValueOfObjCType: @encode(id) at: &_keyEquivalent];
[aDecoder decodeValueOfObjCType: @encode(id) at: &_keyEquivalentFont];
[aDecoder decodeValueOfObjCType: @encode(id) at: &_altContents];
@ -1151,8 +1146,6 @@
[aDecoder decodeValueOfObjCType: @encode(unsigned int)
at: &_showAltStateMask];
NSDebugLog(@"NSButtonCell: finish decoding\n");
return self;
}