mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 19:01:15 +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;
|
||||
|
|
|
@ -66,11 +66,11 @@ findMisspelledWordInString:(NSString *)stringToCheck
|
|||
NSRange r = NSMakeRange(0,0);
|
||||
|
||||
#ifdef HAVE_ASPELL_H
|
||||
if(countOnly)
|
||||
if (countOnly)
|
||||
{
|
||||
NSScanner *inputScanner = [NSScanner scannerWithString: stringToCheck];
|
||||
[inputScanner setCharactersToBeSkipped: [NSCharacterSet whitespaceAndNewlineCharacterSet]];
|
||||
while(![inputScanner isAtEnd])
|
||||
while (![inputScanner isAtEnd])
|
||||
{
|
||||
[inputScanner scanUpToCharactersFromSet: [NSCharacterSet whitespaceAndNewlineCharacterSet]
|
||||
intoString: NULL];
|
||||
|
@ -112,7 +112,7 @@ findMisspelledWordInString:(NSString *)stringToCheck
|
|||
en = aspell_word_list_elements(list);
|
||||
|
||||
// add them to the array.
|
||||
while(!aspell_string_enumeration_at_end(en))
|
||||
while (!aspell_string_enumeration_at_end(en))
|
||||
{
|
||||
const char *string = aspell_string_enumeration_next(en);
|
||||
NSString *word = [NSString stringWithUTF8String: string];
|
||||
|
@ -158,7 +158,7 @@ findMisspelledWordInString:(NSString *)stringToCheck
|
|||
- init
|
||||
{
|
||||
self = [super init];
|
||||
if(self != nil)
|
||||
if (self != nil)
|
||||
{
|
||||
#ifdef HAVE_ASPELL_H
|
||||
// initialization...
|
||||
|
|
Loading…
Reference in a new issue