hyperion-remote help screen needs "--blah" not "-blah" for the long options (#274)

This commit is contained in:
penfold42 2016-10-18 06:38:19 +11:00 committed by redPanther
parent 2cc4cdde26
commit c5088ffeb4
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ int count(std::initializer_list<bool> values)
void showHelp(Option & option){
QString shortOption;
QString longOption = QString("-%1").arg(option.names().last());
QString longOption = QString("--%1").arg(option.names().last());
if(option.names().size() == 2){
shortOption = QString("-%1").arg(option.names().first());