Obsolete Members for QCommandLineOption
The following members of class QCommandLineOption are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.
Public Functions
Member Function Documentation
bool QCommandLineOption::isHidden() const
This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Returns true if this option is omitted from the help output, false if the option is listed.
Use flags() & QCommandLineOption::HiddenFromHelp
This function was introduced in Qt 5.6.
See also setHidden() and QCommandLineOption::HiddenFromHelp.
void QCommandLineOption::setHidden(bool hide)
This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Sets whether to hide this option in the user-visible help output.
All options are visible by default. Setting hide to true for a particular option makes it internal, i.e. not listed in the help output.
Use setFlags(QCommandLineOption::HiddenFromHelp), QCommandLineOption::HiddenFromHelp
This function was introduced in Qt 5.6.
See also isHidden.