Doc: corrected documentation addOptions()

Task-number: QTBUG-43259
Change-Id: If27c0658f7abaa4ce01de343ce90c14bd911212f
Reviewed-by: Martin Smith <martin.smith@digia.com>
bb10
Nico Vertriest 2014-12-12 10:38:07 +01:00
parent dc583a0576
commit fff996e8ad
1 changed files with 5 additions and 3 deletions

View File

@ -340,11 +340,13 @@ bool QCommandLineParser::addOption(const QCommandLineOption &option)
/*!
\since 5.4
Adds the options \a options to look for while parsing.
Adds the options to look for while parsing. The options are specified by
the parameter \a options.
Returns \c false if adding any of the options failed; otherwise returns \c false.
Returns \c true if adding all of the options was successful; otherwise
returns \c false.
Cf. addOption() for when it may fail.
See the documentation for addOption() for when this function may fail.
*/
bool QCommandLineParser::addOptions(const QList<QCommandLineOption> &options)
{