fixed: missing return value for some command handlers

Este commit está contenido en:
Albert S. 2020-05-24 15:37:47 +02:00
padre 34c828a453
commit 072996e0d3
Se han modificado 3 ficheros con 2 adiciones y 3 borrados

Ver fichero

@ -121,10 +121,7 @@ int CommandDelete::handle(QStringList arguments)
}
}
return 0;
}

Ver fichero

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

Ver fichero

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