fixed: missing return value for some command handlers

This commit is contained in:
Albert S. 2020-05-24 15:37:47 +02:00
parent 34c828a453
commit 072996e0d3
3 changed files with 2 additions and 3 deletions

View File

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

View File

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

View File

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