moe consistent use of white space to match coding standard etc

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34809 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2012-02-23 17:57:50 +00:00
parent 45ce1cac8d
commit cd676ece36
4 changed files with 128 additions and 126 deletions

View file

@ -202,7 +202,7 @@ extern void clearPrivatePointers(xmlNodePtr aNode);
options |= XML_PARSE_NOBLANKS;
//xmlKeepBlanksDefault(0);
doc = xmlReadDoc((xmlChar *)str, url, encoding, options);
if(doc == NULL)
if (doc == NULL)
{
[self release];
self = nil;
@ -258,7 +258,7 @@ extern void clearPrivatePointers(xmlNodePtr aNode);
{
id oldElement = [self rootElement];
if(root == nil)
if (root == nil)
{
return;
}
@ -410,11 +410,11 @@ extern void clearPrivatePointers(xmlNodePtr aNode);
NSUInteger index = 0;
// Iterate over the keys and put them into params...
if(arguments != nil)
if (arguments != nil)
{
int count = [[arguments allKeys] count];
*params = NSZoneCalloc([self zone],((count + 1) * 2),sizeof(xmlChar *));
while((key = [en nextObject]) != nil)
while ((key = [en nextObject]) != nil)
{
params[index] = (xmlChar *)XMLSTRING(key);
params[index+1] = (xmlChar *)XMLSTRING([arguments objectForKey: key]);