Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev

This commit is contained in:
andy
2011-02-25 16:44:39 +00:00
24 changed files with 439 additions and 273 deletions

View File

@ -102,7 +102,7 @@ void Foam::systemCall::execute()
{
forAll(executeCalls_, callI)
{
Foam::system(executeCalls_[callI].c_str());
Foam::system(executeCalls_[callI]);
}
}
@ -111,7 +111,7 @@ void Foam::systemCall::end()
{
forAll(endCalls_, callI)
{
Foam::system(endCalls_[callI].c_str());
Foam::system(endCalls_[callI]);
}
}
@ -120,7 +120,7 @@ void Foam::systemCall::write()
{
forAll(writeCalls_, callI)
{
Foam::system(writeCalls_[callI].c_str());
Foam::system(writeCalls_[callI]);
}
}