beautify the output of sections: no caps in parenthesis and space before colon

This commit is contained in:
nojhan 2011-07-01 10:52:44 +02:00
commit 0ce639e13a

View file

@ -347,10 +347,10 @@ void eoParser::printHelp(ostream& os)
if (p->second->shortName())
os << "-" << p->second->shortName() << ", ";
os << "--" <<p->second->longName() <<":\t"
os << "--" <<p->second->longName() <<" :\t"
<< p->second->description() ;
os << " (" << ( (p->second->required())?"Required":"Optional" );
os << " (" << ( (p->second->required())?"required":"optional" );
os <<", default: "<< p->second->defValue() << ')' << std::endl;
} // for p