* Source/GSXibLoader.m: Remove test code.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@35514 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2012-09-04 02:35:48 +00:00
parent 7da4d487ca
commit fb624bfa0d
2 changed files with 10 additions and 5 deletions

View file

@ -1,3 +1,7 @@
2012-09-03 22:35-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Source/GSXibLoader.m: Remove test code.
2012-09-03 21:37-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Source/GSXibLoader.m: Changes by Marcian Lyttwyn to correct

View file

@ -1058,8 +1058,10 @@
{
NSString *key = [[node attributeForName:@"key"] stringValue];
if ([key rangeOfString:@"CustomClassName"].location != NSNotFound)
[customClassDict setObject:[node stringValue] forKey:key];
}
{
[customClassDict setObject:[node stringValue] forKey:key];
}
}
}
}
else
@ -1082,9 +1084,8 @@
id key = [[xmlKeys objectAtIndex:index] stringValue];
if ([key rangeOfString:@"CustomClassName"].location != NSNotFound)
{
NSString *obj = [[xmlObjs objectAtIndex:index] stringValue];
if ([obj isEqualToString:@"NSSecureTextField"] == NO) // SKIP FOR NOW!!!
[customClassDict setObject:[[xmlObjs objectAtIndex:index] stringValue] forKey:key];
// NSString *obj = [[xmlObjs objectAtIndex:index] stringValue];
[customClassDict setObject:[[xmlObjs objectAtIndex:index] stringValue] forKey:key];
}
}
}