Rename all symbols to new project name

This commit is contained in:
2021-06-12 14:59:58 +02:00
parent 645903ed6b
commit e97551be97
26 changed files with 93 additions and 93 deletions

View File

@@ -17,8 +17,8 @@ int CommandAdd::handle(QStringList arguments)
{
QCommandLineParser parser;
parser.addOptions({{{"c", "continue"},
"Continue adding files, don't exit on first error. If this option is not given, qss will exit "
"asap, but it's possible that a few files will still be processed. "
"Continue adding files, don't exit on first error. If this option is not given, looqs will "
"exit asap, but it's possible that a few files will still be processed. "
"Set -t 1 to avoid this behavior, but processing will be slower. "},
{{"a", "all"}, "On error, no files should be added, even already processed ones"},
{{"v", "verbose"}, "Print skipped and added files"},
@@ -32,7 +32,7 @@ int CommandAdd::handle(QStringList arguments)
bool verbose = parser.isSet("verbose");
if(parser.isSet("all"))
{
throw QSSGeneralException("To be implemented");
throw LooqsGeneralException("To be implemented");
}
if(parser.isSet("threads"))
{