Fix indentation

svn path=/trunk/; revision=30836
This commit is contained in:
Hervé Poussineau 2007-11-28 12:32:06 +00:00
parent 407c506421
commit d7c3063161
3 changed files with 15 additions and 15 deletions

View file

@ -265,7 +265,7 @@ SourceFile::Parse ()
this->file.file.relative_path.c_str (),
cSep,
this->file.file.name.c_str () );
}
}
p++;
}
Close ();

View file

@ -845,10 +845,10 @@ MingwBackend::GetVersionString ( const string& versionCommand )
fp = popen ( versionCommand.c_str () , "r" );
for( i = 0;
( i < 80 ) &&
( feof ( fp ) == 0 &&
( ( ch = fgetc( fp ) ) != -1 ) );
i++ )
( i < 80 ) &&
( feof ( fp ) == 0 &&
( ( ch = fgetc( fp ) ) != -1 ) );
i++ )
{
buffer[i] = (char) ch;
}

View file

@ -412,19 +412,19 @@ Module::Module ( const Project& project,
att->value,
&moduleNode );
output = new FileLocation ( GetTargetDirectoryTree (),
modulePath,
att->value,
&moduleNode );
output = new FileLocation ( GetTargetDirectoryTree (),
modulePath,
att->value,
&moduleNode );
}
else
{
{
install = NULL;
output = new FileLocation ( GetTargetDirectoryTree (),
modulePath,
name + extension,
&moduleNode );
}
output = new FileLocation ( GetTargetDirectoryTree (),
modulePath,
name + extension,
&moduleNode );
}
att = moduleNode.GetAttribute ( "allowwarnings", false );
if ( att == NULL )