! Clears the definitions of additional arguments from the help text. This is only needed for the special case of tools which support multiple commands with different options. Once the actual command has been identified, the options for this command can be defined, and the help text for the command can be adjusted accordingly. Example: \snippet code/src_corelib_tools_q
| 362 | \snippet code/src_corelib_tools_qcommandlineparser.cpp 3 |
| 363 | */ |
| 364 | void QCommandLineParser::clearPositionalArguments() |
| 365 | { |
| 366 | d->positionalArgumentDefinitions.clear(); |
| 367 | } |
| 368 | |
| 369 | /*! |
| 370 | Parses the command line \a arguments. |
nothing calls this directly
no outgoing calls
no test coverage detected