Skip to content

Commit

Permalink
FIX: JKQTPExampleApplication does no longer complain, if additional c…
Browse files Browse the repository at this point in the history
…ommmand line options are present (additionally to those declared in JKQTPExampleApplication)
  • Loading branch information
jkriege2 committed Jan 4, 2024
1 parent aa2fcb1 commit 6511c01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/libexampletools/jkqtpexampleapplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ void JKQTPExampleApplication::readCmdLine() {
QCommandLineOption iterateFunctorStepsSupressInitialOption(QStringList()<<"iteratefunctorsteps_suppressinitial", "iterate over steps defined by addExportStepFunctor() in code.");
parser.addOption(iterateFunctorStepsSupressInitialOption);

parser.process(*this);
//parser.process(*this);
parser.parse(arguments());

screenshotDir=QDir(parser.value(outputDirectoryOption));
screenshotBasename=parser.value(basenameOption).split(',');
Expand Down

0 comments on commit 6511c01

Please sign in to comment.