mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 13:21:56 +00:00
Minor white space fixups
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@23889 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c7aab12987
commit
4225c9f33c
2 changed files with 8 additions and 8 deletions
|
@ -537,7 +537,7 @@ void __dummy_GMAppKit_functionForLinking() {}
|
|||
|
||||
[archiver encodeObject:[self documentView] withName:@"documentView"];
|
||||
[archiver encodeBOOL:[self copiesOnScroll] withName:@"copiesOnScroll"];
|
||||
if([self respondsToSelector: @selector(drawsBackground)])
|
||||
if ([self respondsToSelector: @selector(drawsBackground)])
|
||||
[archiver encodeBOOL:[self drawsBackground] withName:@"drawsBackground"];
|
||||
[archiver encodeObject:[self backgroundColor] withName:@"backgroundColor"];
|
||||
}
|
||||
|
@ -548,7 +548,7 @@ void __dummy_GMAppKit_functionForLinking() {}
|
|||
|
||||
[self setDocumentView:[unarchiver decodeObjectWithName:@"documentView"]];
|
||||
[self setCopiesOnScroll:[unarchiver decodeBOOLWithName:@"copiesOnScroll"]];
|
||||
if([self respondsToSelector: @selector(setDrawsBackground:)])
|
||||
if ([self respondsToSelector: @selector(setDrawsBackground:)])
|
||||
[self setDrawsBackground:[unarchiver decodeBOOLWithName:@"drawsBackground"]];
|
||||
[self setBackgroundColor:[unarchiver decodeObjectWithName:@"backgroundColor"]];
|
||||
return self;
|
||||
|
@ -1100,14 +1100,14 @@ void __dummy_GMAppKit_functionForLinking() {}
|
|||
- (void)encodeWithModelArchiver:(GMArchiver*)archiver
|
||||
{
|
||||
[super encodeWithModelArchiver:archiver];
|
||||
if([self respondsToSelector: @selector(echosBullets)])
|
||||
if ([self respondsToSelector: @selector(echosBullets)])
|
||||
[archiver encodeBOOL:[self echosBullets] withName:@"echosBullets"];
|
||||
}
|
||||
|
||||
- (id)initWithModelUnarchiver:(GMUnarchiver*)unarchiver
|
||||
{
|
||||
self = [super initWithModelUnarchiver:unarchiver];
|
||||
if([self respondsToSelector: @selector(setEchosBullets:)])
|
||||
if ([self respondsToSelector: @selector(setEchosBullets:)])
|
||||
[self setEchosBullets:[unarchiver decodeBOOLWithName:@"echosBullets"]];
|
||||
|
||||
return self;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue