4
0
mirror of https://github.com/QuasarApp/Patronum.git synced 2025-05-12 15:09:35 +00:00

fix build after update quasarapplib

This commit is contained in:
Andrei Yankovich 2021-04-26 23:56:34 +03:00
parent adcad7c5ff
commit 3a54053da0
2 changed files with 3 additions and 3 deletions

@ -45,7 +45,7 @@ bool Controller::send() {
return d_ptr->uninstall();
}
bool printHelp = !QuasarAppUtils::Params::customParamasSize() ||
bool printHelp = !QuasarAppUtils::Params::size() ||
QuasarAppUtils::Params::isEndable("h") ||
QuasarAppUtils::Params::isEndable("help");
@ -145,7 +145,7 @@ QList<Feature> Controller::features() {
void Controller::printDefaultHelp() const {
auto quasarappHelp = QuasarAppUtils::Params::getparamsHelp();
auto quasarappHelp = QuasarAppUtils::Params::getParamsHelp();
QuasarAppUtils::Help::Charters help{{"General options of this controller",{
{"start", QObject::tr("Start a service")},

@ -106,7 +106,7 @@ int ServiceBase::exec() {
bool fExec = QuasarAppUtils::Params::isEndable("exec") || QuasarAppUtils::Params::isDebugBuild();
if (!(QuasarAppUtils::Params::customParamasSize() || fExec)) {
if (!(QuasarAppUtils::Params::size() || fExec)) {
return controller()->startDetached();
}