fixed: missing return value for some command handlers

This commit is contained in:
Albert S. 2020-05-24 15:37:47 +02:00
vanhempi 8de07b703c
commit 2b97f4a737
2 muutettua tiedostoa jossa 4 lisäystä ja 0 poistoa

Näytä tiedosto

@ -30,4 +30,6 @@ int CommandList::handle(QStringList arguments)
{
Logger::info() << result.fileData.absPath << endl;
}
return 0;
}

Näytä tiedosto

@ -32,4 +32,6 @@ int CommandSearch::handle(QStringList arguments)
{
Logger::info() << result.fileData.absPath << endl;
}
return 0;
}