be sure that we fill the line with space when saving the status file

This commit is contained in:
nojhan 2011-10-10 21:11:03 +02:00
commit 5c7f3835f2

View file

@ -289,7 +289,7 @@ void eoParser::printOn(ostream& os) const
string str = "--" + param->longName() + "=" + param->getValue();
os.setf(ios_base::left, ios_base::adjustfield);
os << setw(40) << str;
os << setfill(' ') << setw(40) << str;
os << setw(0) << " # ";
if (param->shortName())